adm1027: add return statement

Adds a missing return statment which will stop misleading the users

Change-Id: I53741f1136b396e9493ce959b54efc00c9b09764
Signed-off-by: Vikram Narayanan <vikram186@gmail.com>
Reviewed-on: http://review.coreboot.org/522
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
Vikram Narayanan 2012-01-07 16:04:46 +05:30 committed by Stefan Reinauer
parent 4b7b320ff8
commit f61fff92e4
1 changed files with 1 additions and 0 deletions

View File

@ -35,6 +35,7 @@ static void adm1027_enable_monitoring(device_t dev)
result = smbus_read_byte(dev, ADM1027_REG_CONFIG1); result = smbus_read_byte(dev, ADM1027_REG_CONFIG1);
if (!(result & CFG1_STRT)) { if (!(result & CFG1_STRT)) {
printk(BIOS_DEBUG, "ADM1027: monitoring would not enable\n"); printk(BIOS_DEBUG, "ADM1027: monitoring would not enable\n");
return;
} }
printk(BIOS_DEBUG, "ADM1027: monitoring enabled\n"); printk(BIOS_DEBUG, "ADM1027: monitoring enabled\n");
} }