diff options
Diffstat (limited to 'src/superio/fintek/f71805f')
-rw-r--r-- | src/superio/fintek/f71805f/Config.lb | 1 | ||||
-rw-r--r-- | src/superio/fintek/f71805f/Makefile.inc | 1 | ||||
-rw-r--r-- | src/superio/fintek/f71805f/f71805f.h | 2 | ||||
-rw-r--r-- | src/superio/fintek/f71805f/superio.c | 7 |
4 files changed, 4 insertions, 7 deletions
diff --git a/src/superio/fintek/f71805f/Config.lb b/src/superio/fintek/f71805f/Config.lb index b6ecdba382..3773758bb5 100644 --- a/src/superio/fintek/f71805f/Config.lb +++ b/src/superio/fintek/f71805f/Config.lb @@ -20,4 +20,3 @@ config chip.h object superio.o - diff --git a/src/superio/fintek/f71805f/Makefile.inc b/src/superio/fintek/f71805f/Makefile.inc index d56723dc4d..db5d93aa79 100644 --- a/src/superio/fintek/f71805f/Makefile.inc +++ b/src/superio/fintek/f71805f/Makefile.inc @@ -20,4 +20,3 @@ #config chip.h obj-$(CONFIG_SUPERIO_FINTEK_F71805F) += superio.o - diff --git a/src/superio/fintek/f71805f/f71805f.h b/src/superio/fintek/f71805f/f71805f.h index 41cb699987..587746093e 100644 --- a/src/superio/fintek/f71805f/f71805f.h +++ b/src/superio/fintek/f71805f/f71805f.h @@ -24,7 +24,7 @@ * - URL: http://www.fintek.com.tw/eng/products.asp?BID=1&SID=17 * - PDF: http://www.fintek.com.tw/files/productfiles/F71805F_V025.pdf * - Revision: V0.25P - */ + */ /* Logical Device Numbers (LDN). */ #define F71805F_FDC 0x00 /* Floppy */ diff --git a/src/superio/fintek/f71805f/superio.c b/src/superio/fintek/f71805f/superio.c index 4df9afc9f9..6476e0a6f7 100644 --- a/src/superio/fintek/f71805f/superio.c +++ b/src/superio/fintek/f71805f/superio.c @@ -29,12 +29,12 @@ #include "chip.h" #include "f71805f.h" -static void pnp_enter_conf_state(device_t dev) +static void pnp_enter_conf_state(device_t dev) { outb(0x87, dev->path.pnp.port); } -static void pnp_exit_conf_state(device_t dev) +static void pnp_exit_conf_state(device_t dev) { outb(0xaa, dev->path.pnp.port); } @@ -46,7 +46,7 @@ static void f71805f_init(device_t dev) if (!dev->enabled) return; - + switch(dev->path.pnp.device) { /* TODO: Might potentially need code for HWM or FDC etc. */ case F71805F_SP1: @@ -110,4 +110,3 @@ struct chip_operations superio_fintek_f71805f_ops = { CHIP_NAME("Fintek F71805F Super I/O") .enable_dev = enable_dev }; - |