Skip to content

Commit

Permalink
Merge branch 'hwmon-for-linus' of git://git.kernel.org/pub/scm/linux/…
Browse files Browse the repository at this point in the history
…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
  • Loading branch information
torvalds committed Sep 7, 2013
2 parents 27c7651 + 94e4441 commit 7b4022f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Documentation/hwmon/w83791d
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Credits:
Philip Edelbrock <[email protected]>,
and Mark Studebaker <[email protected]>
w83792d.c:
Chunhao Huang <DZShen@Winbond.com.tw>,
Shane Huang (Winbond),
Rudolf Marek <[email protected]>

Additional contributors:
Expand Down
3 changes: 1 addition & 2 deletions Documentation/hwmon/w83792d
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ Supported chips:
Addresses scanned: I2C 0x2c - 0x2f
Datasheet: http://www.winbond.com.tw

Author: Chunhao Huang
Contact: DZShen <[email protected]>
Author: Shane Huang (Winbond)


Module Parameters
Expand Down
2 changes: 1 addition & 1 deletion drivers/hwmon/emc6w201.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ static const unsigned short normal_i2c[] = { 0x2c, 0x2d, 0x2e, I2C_CLIENT_END };
#define EMC6W201_REG_TEMP_HIGH(nr) (0x57 + (nr) * 2)
#define EMC6W201_REG_FAN_MIN(nr) (0x62 + (nr) * 2)

enum { input, min, max } subfeature;
enum subfeature { input, min, max };

/*
* Per-device data
Expand Down
4 changes: 2 additions & 2 deletions drivers/hwmon/w83792d.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* w83792d.c - Part of lm_sensors, Linux kernel modules for hardware
* monitoring
* Copyright (C) 2004, 2005 Winbond Electronics Corp.
* Chunhao Huang <[email protected]>,
* Shane Huang,
* Rudolf Marek <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
Expand Down Expand Up @@ -1665,6 +1665,6 @@ static void w83792d_print_debug(struct w83792d_data *data, struct device *dev)

module_i2c_driver(w83792d_driver);

MODULE_AUTHOR("Chunhao Huang @ Winbond <[email protected]>");
MODULE_AUTHOR("Shane Huang (Winbond)");
MODULE_DESCRIPTION("W83792AD/D driver for linux-2.6");
MODULE_LICENSE("GPL");

0 comments on commit 7b4022f

Please sign in to comment.