Commit 95f44262 authored by Adam Wujek's avatar Adam Wujek 💬

userspace/libwr: change level of two printouts

Use pr_debug instead of pr_info, to avoid printing these two messages
at i.e. wrs_version execution
Signed-off-by: Adam Wujek's avatarAdam Wujek <adam.wujek@cern.ch>
parent 83d9d9b5
......@@ -73,7 +73,7 @@ int shw_i2c_io_init(void)
return -1;
}
pr_info("I2C I/O init success for bus %s\n", i2c_io_bus.name);
pr_debug("I2C I/O init success for bus %s\n", i2c_io_bus.name);
return 0;
}
......
......@@ -112,7 +112,7 @@ int shw_io_init()
I2C_shw_io_led_state_o);
}
pr_info("Hardware version is %d (CPUPWN=%d)\n", ver, ver < 330);
pr_debug("Hardware version is %d (CPUPWN=%d)\n", ver, ver < 330);
return 0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment