diff options
| author | Zijun Hu <zijun.hu@oss.qualcomm.com> | 2025-07-14 23:34:18 +0800 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2025-08-19 12:41:18 +0200 |
| commit | d7f8d0758b975db8406c91cf242d46cd9611ba3e (patch) | |
| tree | 104b28e4836f76a5d84a16bccd35a04e9853c452 | |
| parent | 1ba0fb42aa6a5f072b1b8c0b0520b32ad4ef4b45 (diff) | |
| download | linux-d7f8d0758b975db8406c91cf242d46cd9611ba3e.tar.gz linux-d7f8d0758b975db8406c91cf242d46cd9611ba3e.zip | |
char: misc: Register fixed minor EISA_EEPROM_MINOR in linux/miscdevice.h
Move fixed minor EISA_EEPROM_MINOR definition to linux/miscdevice.h.
Signed-off-by: Zijun Hu <zijun.hu@oss.qualcomm.com>
Link: https://lore.kernel.org/r/20250714-rfc_miscdev-v6-7-2ed949665bde@oss.qualcomm.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| -rw-r--r-- | drivers/parisc/eisa_eeprom.c | 2 | ||||
| -rw-r--r-- | include/linux/miscdevice.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/drivers/parisc/eisa_eeprom.c b/drivers/parisc/eisa_eeprom.c index 443b15422fc1..601cbb22574f 100644 --- a/drivers/parisc/eisa_eeprom.c +++ b/drivers/parisc/eisa_eeprom.c @@ -15,8 +15,6 @@ #include <linux/uaccess.h> #include <asm/eisa_eeprom.h> -#define EISA_EEPROM_MINOR 241 - static loff_t eisa_eeprom_llseek(struct file *file, loff_t offset, int origin) { return fixed_size_llseek(file, offset, origin, HPEE_MAX_LENGTH); diff --git a/include/linux/miscdevice.h b/include/linux/miscdevice.h index 565b88efeb23..7d0aa718499c 100644 --- a/include/linux/miscdevice.h +++ b/include/linux/miscdevice.h @@ -70,6 +70,7 @@ #define UHID_MINOR 239 #define USERIO_MINOR 240 #define VHOST_VSOCK_MINOR 241 +#define EISA_EEPROM_MINOR 241 #define RFKILL_MINOR 242 /* |
