Add formated loging for device detection

Commits merged and amended for code style by Adam Honse <calcprogrammer1@gmail.com>
This commit is contained in:
Alex 2021-06-16 04:26:15 +02:00 committed by Adam Honse
parent 5a7879415f
commit 4af8614fce
19 changed files with 213 additions and 111 deletions

View file

@ -491,7 +491,7 @@ void i2c_smbus_i801_detect()
{
if(!IsInpOutDriverOpen())
{
LOG_NOTICE("inpout32 is not loaded, i801 I2C bus detection aborted");
LOG_INFO("inpout32 is not loaded, i801 I2C bus detection aborted");
return;
}
@ -507,7 +507,7 @@ void i2c_smbus_i801_detect()
if (hres)
{
LOG_NOTICE("WMI query failed, i801 I2C bus detection aborted");
LOG_INFO("WMI query failed, i801 I2C bus detection aborted");
return;
}

View file

@ -196,7 +196,7 @@ void i2c_smbus_nct6775_detect()
{
if(!IsInpOutDriverOpen())
{
LOG_NOTICE("inpout32 is not loaded, nct6775 I2C bus detection aborted");
LOG_INFO("inpout32 is not loaded, nct6775 I2C bus detection aborted");
return;
}

View file

@ -185,7 +185,7 @@ void i2c_smbus_piix4_detect()
{
if(!IsInpOutDriverOpen())
{
LOG_NOTICE("inpout32 is not loaded, piix4 I2C bus detection aborted");
LOG_INFO("inpout32 is not loaded, piix4 I2C bus detection aborted");
return;
}
@ -201,7 +201,7 @@ void i2c_smbus_piix4_detect()
if (hres)
{
LOG_NOTICE("WMI query failed, piix4 I2C bus detection aborted");
LOG_INFO("WMI query failed, piix4 I2C bus detection aborted");
return;
}