Clean up whitespace in preparation for another patch to fix fan control.
This is nothing more than the result of running indent -npro -kr -i8 -ts8 -sob -l80 -ss -ncs adm1027.c Signed-off-by: Ward Vandewege <ward@gnu.org> Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Ronald G. Minnich <rminnich@gmail.com> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2663 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
committed by
Uwe Hermann
parent
298a693c6b
commit
4aae668fed
@@ -23,9 +23,10 @@
|
|||||||
static void adm1027_enable_monitoring(device_t dev)
|
static void adm1027_enable_monitoring(device_t dev)
|
||||||
{
|
{
|
||||||
int result;
|
int result;
|
||||||
|
|
||||||
result = smbus_read_byte(dev, ADM1027_REG_CONFIG1);
|
result = smbus_read_byte(dev, ADM1027_REG_CONFIG1);
|
||||||
|
|
||||||
if(!(result & CFG1_RDY) ) {
|
if (!(result & CFG1_RDY)) {
|
||||||
printk_debug("ADM1027: monitoring not ready\r\n");
|
printk_debug("ADM1027: monitoring not ready\r\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -41,16 +42,16 @@ static void adm1027_enable_monitoring(device_t dev)
|
|||||||
|
|
||||||
static void adm1027_init(device_t dev)
|
static void adm1027_init(device_t dev)
|
||||||
{
|
{
|
||||||
if (dev->enabled && dev->path.type == DEVICE_PATH_I2C)
|
if (dev->enabled && dev->path.type == DEVICE_PATH_I2C) {
|
||||||
{
|
if (ops_smbus_bus(get_pbus_smbus(dev))) {
|
||||||
if(ops_smbus_bus(get_pbus_smbus(dev))) {
|
if (dev->bus->dev->path.type == DEVICE_PATH_I2C)
|
||||||
if( dev->bus->dev->path.type == DEVICE_PATH_I2C) smbus_set_link(dev); // it is under mux
|
smbus_set_link(dev); // it is under mux
|
||||||
adm1027_enable_monitoring(dev);
|
adm1027_enable_monitoring(dev);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void adm1027_noop(device_t dummy)
|
static void adm1027_noop(device_t dummy)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user