Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 227764
b: refs/heads/master
c: 1ee7c71
h: refs/heads/master
v: v3
  • Loading branch information
Joe Perches authored and Guenter Roeck committed Jan 8, 2011
1 parent 6c93bc6 commit 6df8167
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 33 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2344cd0c2e9ea8f3037be11fb997ddbeda0237ca
refs/heads/master: 1ee7c71bd1aa9758f14e1be92310215a5bd0abe7
58 changes: 26 additions & 32 deletions trunk/drivers/hwmon/applesmc.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/

#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

#include <linux/delay.h>
#include <linux/platform_device.h>
#include <linux/input-polldev.h>
Expand Down Expand Up @@ -251,8 +253,7 @@ static int __wait_status(u8 val)
}
}

printk(KERN_WARNING "applesmc: wait status failed: %x != %x\n",
val, inb(APPLESMC_CMD_PORT));
pr_warn("wait status failed: %x != %x\n", val, inb(APPLESMC_CMD_PORT));

return -EIO;
}
Expand All @@ -271,8 +272,7 @@ static int send_command(u8 cmd)
if ((inb(APPLESMC_CMD_PORT) & APPLESMC_STATUS_MASK) == 0x0c)
return 0;
}
printk(KERN_WARNING "applesmc: command failed: %x -> %x\n",
cmd, inb(APPLESMC_CMD_PORT));
pr_warn("command failed: %x -> %x\n", cmd, inb(APPLESMC_CMD_PORT));
return -EIO;
}

Expand All @@ -286,8 +286,8 @@ static int applesmc_read_key(const char* key, u8* buffer, u8 len)
int i;

if (len > APPLESMC_MAX_DATA_LENGTH) {
printk(KERN_ERR "applesmc_read_key: cannot read more than "
"%d bytes\n", APPLESMC_MAX_DATA_LENGTH);
pr_err("%s(): cannot read more than %d bytes\n",
__func__, APPLESMC_MAX_DATA_LENGTH);
return -EINVAL;
}

Expand Down Expand Up @@ -329,8 +329,8 @@ static int applesmc_write_key(const char* key, u8* buffer, u8 len)
int i;

if (len > APPLESMC_MAX_DATA_LENGTH) {
printk(KERN_ERR "applesmc_write_key: cannot write more than "
"%d bytes\n", APPLESMC_MAX_DATA_LENGTH);
pr_err("%s(): cannot write more than %d bytes\n",
__func__, APPLESMC_MAX_DATA_LENGTH);
return -EINVAL;
}

Expand Down Expand Up @@ -470,7 +470,7 @@ static void applesmc_device_init(void)
msleep(INIT_WAIT_MSECS);
}

printk(KERN_WARNING "applesmc: failed to init the device\n");
pr_warn("failed to init the device\n");

out:
mutex_unlock(&applesmc_lock);
Expand Down Expand Up @@ -616,8 +616,7 @@ static ssize_t applesmc_light_show(struct device *dev,
if (ret)
goto out;
data_length = clamp_val(query[0], 0, 10);
printk(KERN_INFO "applesmc: light sensor data length set to "
"%d\n", data_length);
pr_info("light sensor data length set to %d\n", data_length);
}

ret = applesmc_read_key(LIGHT_SENSOR_LEFT_KEY, buffer, data_length);
Expand Down Expand Up @@ -1383,18 +1382,18 @@ static int applesmc_dmi_match(const struct dmi_system_id *id)
{
int i = 0;
struct dmi_match_data* dmi_data = id->driver_data;
printk(KERN_INFO "applesmc: %s detected:\n", id->ident);
pr_info("%s detected:\n", id->ident);
applesmc_accelerometer = dmi_data->accelerometer;
printk(KERN_INFO "applesmc: - Model %s accelerometer\n",
applesmc_accelerometer ? "with" : "without");
pr_info(" - Model %s accelerometer\n",
applesmc_accelerometer ? "with" : "without");
applesmc_light = dmi_data->light;
printk(KERN_INFO "applesmc: - Model %s light sensors and backlight\n",
applesmc_light ? "with" : "without");
pr_info(" - Model %s light sensors and backlight\n",
applesmc_light ? "with" : "without");

applesmc_temperature_set = dmi_data->temperature_set;
while (temperature_sensors_sets[applesmc_temperature_set][i] != NULL)
i++;
printk(KERN_INFO "applesmc: - Model with %d temperature sensors\n", i);
pr_info(" - Model with %d temperature sensors\n", i);
return 1;
}

Expand Down Expand Up @@ -1445,7 +1444,7 @@ static int applesmc_create_accelerometer(void)
sysfs_remove_group(&pdev->dev.kobj, &accelerometer_attributes_group);

out:
printk(KERN_WARNING "applesmc: driver init failed (ret=%d)!\n", ret);
pr_warn("driver init failed (ret=%d)!\n", ret);
return ret;
}

Expand Down Expand Up @@ -1625,7 +1624,7 @@ static int __init applesmc_init(void)
int i;

if (!dmi_check_system(applesmc_whitelist)) {
printk(KERN_WARNING "applesmc: supported laptop not found!\n");
pr_warn("supported laptop not found!\n");
ret = -ENODEV;
goto out;
}
Expand Down Expand Up @@ -1659,15 +1658,13 @@ static int __init applesmc_init(void)
/* create fan files */
count = applesmc_get_fan_count();
if (count < 0)
printk(KERN_ERR "applesmc: Cannot get the number of fans.\n");
pr_err("Cannot get the number of fans\n");
else
printk(KERN_INFO "applesmc: %d fans found.\n", count);
pr_info("%d fans found\n", count);

if (count > 4) {
count = 4;
printk(KERN_WARNING "applesmc: More than 4 fans found,"
" but at most 4 fans are supported"
" by the driver.\n");
pr_warn("A maximum of 4 fans are supported by this driver\n");
}

while (fans_handled < count) {
Expand All @@ -1683,11 +1680,8 @@ static int __init applesmc_init(void)
i++) {
if (temperature_attributes[i] == NULL ||
label_attributes[i] == NULL) {
printk(KERN_ERR "applesmc: More temperature sensors "
"in temperature_sensors_sets (at least %i)"
"than available sysfs files in "
"temperature_attributes (%i), please report "
"this bug.\n", i, i-1);
pr_err("More temperature sensors in temperature_sensors_sets (at least %i) than available sysfs files in temperature_attributes (%i), please report this bug\n",
i, i-1);
goto out_temperature;
}
ret = sysfs_create_file(&pdev->dev.kobj,
Expand Down Expand Up @@ -1731,7 +1725,7 @@ static int __init applesmc_init(void)
goto out_light_ledclass;
}

printk(KERN_INFO "applesmc: driver successfully loaded.\n");
pr_info("driver successfully loaded\n");

return 0;

Expand Down Expand Up @@ -1764,7 +1758,7 @@ static int __init applesmc_init(void)
out_region:
release_region(APPLESMC_DATA_PORT, APPLESMC_NR_PORTS);
out:
printk(KERN_WARNING "applesmc: driver init failed (ret=%d)!\n", ret);
pr_warn("driver init failed (ret=%d)!\n", ret);
return ret;
}

Expand All @@ -1789,7 +1783,7 @@ static void __exit applesmc_exit(void)
platform_driver_unregister(&applesmc_driver);
release_region(APPLESMC_DATA_PORT, APPLESMC_NR_PORTS);

printk(KERN_INFO "applesmc: driver unloaded.\n");
pr_info("driver unloaded\n");
}

module_init(applesmc_init);
Expand Down

0 comments on commit 6df8167

Please sign in to comment.