diff options
| author | Tom Rini <[email protected]> | 2025-07-11 09:20:19 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-10-28 12:24:03 -0600 |
| commit | b901d8f15c3b623e6eb01c397cc3140d31388016 (patch) | |
| tree | dffe7dde4d44c231b4afb24f973bc37046249ecf /drivers/misc | |
| parent | ddc28ad0f2a23097a95fd897e9a3db95e3f20034 (diff) | |
x86: Rename arch/x86/include/asm/pnp_def.h to include/pnp_def.h
There is nothing x86-centric in this include file, and moving it will
allow for some drivers to be compile-tested on sandbox.
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'drivers/misc')
| -rw-r--r-- | drivers/misc/nuvoton_nct6102d.c | 2 | ||||
| -rw-r--r-- | drivers/misc/smsc_lpc47m.c | 2 | ||||
| -rw-r--r-- | drivers/misc/winbond_w83627.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/drivers/misc/nuvoton_nct6102d.c b/drivers/misc/nuvoton_nct6102d.c index a3ca037d25f..c4a8ecaa1b3 100644 --- a/drivers/misc/nuvoton_nct6102d.c +++ b/drivers/misc/nuvoton_nct6102d.c @@ -4,8 +4,8 @@ */ #include <nuvoton_nct6102d.h> +#include <pnp_def.h> #include <asm/io.h> -#include <asm/pnp_def.h> static void superio_outb(int reg, int val) { diff --git a/drivers/misc/smsc_lpc47m.c b/drivers/misc/smsc_lpc47m.c index 1b15907b093..cc3d3f9de06 100644 --- a/drivers/misc/smsc_lpc47m.c +++ b/drivers/misc/smsc_lpc47m.c @@ -3,8 +3,8 @@ * Copyright (C) 2014, Bin Meng <[email protected]> */ +#include <pnp_def.h> #include <asm/io.h> -#include <asm/pnp_def.h> static void pnp_enter_conf_state(u16 dev) { diff --git a/drivers/misc/winbond_w83627.c b/drivers/misc/winbond_w83627.c index 87b9043e65c..8c5b121b8e9 100644 --- a/drivers/misc/winbond_w83627.c +++ b/drivers/misc/winbond_w83627.c @@ -3,8 +3,8 @@ * Copyright (C) 2016 Stefan Roese <[email protected]> */ +#include <pnp_def.h> #include <asm/io.h> -#include <asm/pnp_def.h> #define WINBOND_ENTRY_KEY 0x87 #define WINBOND_EXIT_KEY 0xaa |
