forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
hwmon: Rename i8k driver to dell-smm-hwmon and move it to hwmon tree
This commit moves i8k driver to hwmon tree under name dell-smm-hwmon which is better name then abbreviation i8k. For backward compatibility is added macro MODULE_ALIAS("i8k") so modprobe will load driver also old name i8k. CONFIG_I8K compile option was not changed. This commit also adds me as maintainer of this new dell-smm-hwmon driver and remove Guenter Roeck from list who is implicit maintainer all hwmon drivers. Signed-off-by: Pali Rohár <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
- Loading branch information
Showing
4 changed files
with
7 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3092,9 +3092,9 @@ S: Maintained | |
F: drivers/platform/x86/dell-smo8800.c | ||
|
||
DELL LAPTOP SMM DRIVER | ||
M: Guenter Roeck <[email protected]> | ||
M: Pali Rohár <[email protected]> | ||
S: Maintained | ||
F: drivers/char/i8k.c | ||
F: drivers/hwmon/dell-smm-hwmon.c | ||
F: include/uapi/linux/i8k.h | ||
|
||
DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
/* | ||
* i8k.c -- Linux driver for accessing the SMM BIOS on Dell laptops. | ||
* dell-smm-hwmon.c -- Linux driver for accessing the SMM BIOS on Dell laptops. | ||
* | ||
* Copyright (C) 2001 Massimo Dal Zotto <[email protected]> | ||
* | ||
* Hwmon integration: | ||
* Copyright (C) 2011 Jean Delvare <[email protected]> | ||
* Copyright (C) 2013, 2014 Guenter Roeck <[email protected]> | ||
* Copyright (C) 2014 Pali Rohár <[email protected]> | ||
* Copyright (C) 2014, 2015 Pali Rohár <[email protected]> | ||
* | ||
* This program is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License as published by the | ||
|
@@ -80,8 +80,10 @@ static uint i8k_fan_max = I8K_FAN_HIGH; | |
#define I8K_HWMON_HAVE_FAN2 (1 << 5) | ||
|
||
MODULE_AUTHOR("Massimo Dal Zotto ([email protected])"); | ||
MODULE_AUTHOR("Pali Rohár <[email protected]>"); | ||
MODULE_DESCRIPTION("Driver for accessing SMM BIOS on Dell laptops"); | ||
MODULE_LICENSE("GPL"); | ||
MODULE_ALIAS("i8k"); | ||
|
||
static bool force; | ||
module_param(force, bool, 0); | ||
|