diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-09-07 13:54:19 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-09-07 13:54:19 -0400 |
commit | 7b4022fa17991801e29f09c6794bbf4d1a0d6b6d (patch) | |
tree | 39e1597430fb99407b491c888d6ac6d9fe7fa81c /drivers/hwmon | |
parent | 27c7651a6a5f143eccd66db38c7a3035e1f8bcfb (diff) | |
parent | 94e44413cdda7b1b838a4c508a4eca0cdd5e7a18 (diff) |
Merge branch 'hwmon-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging
Pull hwmon fixes from Jean Delvare.
* 'hwmon-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging:
hwmon: (emc6w201) Do not declare enum variable
hwmon: (w83792d) Update module author
Diffstat (limited to 'drivers/hwmon')
-rw-r--r-- | drivers/hwmon/emc6w201.c | 2 | ||||
-rw-r--r-- | drivers/hwmon/w83792d.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/hwmon/emc6w201.c b/drivers/hwmon/emc6w201.c index 936898f82f94..82e661e8241b 100644 --- a/drivers/hwmon/emc6w201.c +++ b/drivers/hwmon/emc6w201.c | |||
@@ -49,7 +49,7 @@ static const unsigned short normal_i2c[] = { 0x2c, 0x2d, 0x2e, I2C_CLIENT_END }; | |||
49 | #define EMC6W201_REG_TEMP_HIGH(nr) (0x57 + (nr) * 2) | 49 | #define EMC6W201_REG_TEMP_HIGH(nr) (0x57 + (nr) * 2) |
50 | #define EMC6W201_REG_FAN_MIN(nr) (0x62 + (nr) * 2) | 50 | #define EMC6W201_REG_FAN_MIN(nr) (0x62 + (nr) * 2) |
51 | 51 | ||
52 | enum { input, min, max } subfeature; | 52 | enum subfeature { input, min, max }; |
53 | 53 | ||
54 | /* | 54 | /* |
55 | * Per-device data | 55 | * Per-device data |
diff --git a/drivers/hwmon/w83792d.c b/drivers/hwmon/w83792d.c index 0b804895be43..5febb43cb4c1 100644 --- a/drivers/hwmon/w83792d.c +++ b/drivers/hwmon/w83792d.c | |||
@@ -2,7 +2,7 @@ | |||
2 | * w83792d.c - Part of lm_sensors, Linux kernel modules for hardware | 2 | * w83792d.c - Part of lm_sensors, Linux kernel modules for hardware |
3 | * monitoring | 3 | * monitoring |
4 | * Copyright (C) 2004, 2005 Winbond Electronics Corp. | 4 | * Copyright (C) 2004, 2005 Winbond Electronics Corp. |
5 | * Chunhao Huang <DZShen@Winbond.com.tw>, | 5 | * Shane Huang, |
6 | * Rudolf Marek <r.marek@assembler.cz> | 6 | * Rudolf Marek <r.marek@assembler.cz> |
7 | * | 7 | * |
8 | * This program is free software; you can redistribute it and/or modify | 8 | * This program is free software; you can redistribute it and/or modify |
@@ -1665,6 +1665,6 @@ static void w83792d_print_debug(struct w83792d_data *data, struct device *dev) | |||
1665 | 1665 | ||
1666 | module_i2c_driver(w83792d_driver); | 1666 | module_i2c_driver(w83792d_driver); |
1667 | 1667 | ||
1668 | MODULE_AUTHOR("Chunhao Huang @ Winbond <DZShen@Winbond.com.tw>"); | 1668 | MODULE_AUTHOR("Shane Huang (Winbond)"); |
1669 | MODULE_DESCRIPTION("W83792AD/D driver for linux-2.6"); | 1669 | MODULE_DESCRIPTION("W83792AD/D driver for linux-2.6"); |
1670 | MODULE_LICENSE("GPL"); | 1670 | MODULE_LICENSE("GPL"); |