summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2018-07-06 21:43:34 +0200
committerFelix Held <felix-coreboot@felixheld.de>2018-07-25 09:26:27 +0000
commit8ac8ac635cee177e69144a9a6975e770a7dacc5f (patch)
tree01c222014b5848de53e918bc4b90d3eb85074f67
parent72d77a9a0c1030c872f0245ae7ed6e74b54abac0 (diff)
downloadcoreboot-8ac8ac635cee177e69144a9a6975e770a7dacc5f.tar.gz
coreboot-8ac8ac635cee177e69144a9a6975e770a7dacc5f.tar.bz2
coreboot-8ac8ac635cee177e69144a9a6975e770a7dacc5f.zip
superio/fintek: remove LDN-specific ops overrides
The pnp ops struct is already passed to the pnp_enable_devices function and it is used if no override is supplied in the elements of the pnp_info struct array Change-Id: Ic6387032e043b6ad9e9ceefd2fcc1cdf843e2989 Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-on: https://review.coreboot.org/27387 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
-rw-r--r--src/superio/fintek/f71805f/superio.c14
-rw-r--r--src/superio/fintek/f71808a/superio.c14
-rw-r--r--src/superio/fintek/f71859/superio.c2
-rw-r--r--src/superio/fintek/f71863fg/superio.c20
-rw-r--r--src/superio/fintek/f71869ad/superio.c20
-rw-r--r--src/superio/fintek/f71872/superio.c18
-rw-r--r--src/superio/fintek/f81216h/superio.c10
-rw-r--r--src/superio/fintek/f81865f/superio.c16
-rw-r--r--src/superio/fintek/f81866d/superio.c26
9 files changed, 70 insertions, 70 deletions
diff --git a/src/superio/fintek/f71805f/superio.c b/src/superio/fintek/f71805f/superio.c
index c03d10fa7500..d702eec50875 100644
--- a/src/superio/fintek/f71805f/superio.c
+++ b/src/superio/fintek/f71805f/superio.c
@@ -41,13 +41,13 @@ static struct device_operations ops = {
static struct pnp_info pnp_dev_info[] = {
/* TODO: Some of the 0x07f8 etc. values may not be correct. */
- { &ops, F71805F_FDC, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
- { &ops, F71805F_SP1, PNP_IO0 | PNP_IRQ0, 0x07f8, },
- { &ops, F71805F_SP2, PNP_IO0 | PNP_IRQ0, 0x07f8, },
- { &ops, F71805F_PP, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
- { &ops, F71805F_HWM, PNP_IO0 | PNP_IRQ0, 0x0ff8, },
- { &ops, F71805F_GPIO, PNP_IRQ0, },
- { &ops, F71805F_PME, },
+ { NULL, F71805F_FDC, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
+ { NULL, F71805F_SP1, PNP_IO0 | PNP_IRQ0, 0x07f8, },
+ { NULL, F71805F_SP2, PNP_IO0 | PNP_IRQ0, 0x07f8, },
+ { NULL, F71805F_PP, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
+ { NULL, F71805F_HWM, PNP_IO0 | PNP_IRQ0, 0x0ff8, },
+ { NULL, F71805F_GPIO, PNP_IRQ0, },
+ { NULL, F71805F_PME, },
};
static void enable_dev(struct device *dev)
diff --git a/src/superio/fintek/f71808a/superio.c b/src/superio/fintek/f71808a/superio.c
index eef724290c38..e8fcd958acdc 100644
--- a/src/superio/fintek/f71808a/superio.c
+++ b/src/superio/fintek/f71808a/superio.c
@@ -54,13 +54,13 @@ static struct device_operations ops = {
static struct pnp_info pnp_dev_info[] = {
/* TODO: Some of the 0x07f8 etc. values may not be correct. */
- { &ops, F71808A_SP1, PNP_IO0 | PNP_IRQ0, 0x07f8, },
- { &ops, F71808A_HWM, PNP_IO0 | PNP_IRQ0, 0x07f8, },
- { &ops, F71808A_KBC, PNP_IO0 | PNP_IRQ0 | PNP_IRQ1, 0x07ff, },
- { &ops, F71808A_GPIO, PNP_IRQ0, },
- { &ops, F71808A_WDT, PNP_IO0, 0x07f8,},
- { &ops, F71808A_CIR, PNP_IO0 | PNP_IRQ0, 0x07f8, },
- { &ops, F71808A_PME, },
+ { NULL, F71808A_SP1, PNP_IO0 | PNP_IRQ0, 0x07f8, },
+ { NULL, F71808A_HWM, PNP_IO0 | PNP_IRQ0, 0x07f8, },
+ { NULL, F71808A_KBC, PNP_IO0 | PNP_IRQ0 | PNP_IRQ1, 0x07ff, },
+ { NULL, F71808A_GPIO, PNP_IRQ0, },
+ { NULL, F71808A_WDT, PNP_IO0, 0x07f8,},
+ { NULL, F71808A_CIR, PNP_IO0 | PNP_IRQ0, 0x07f8, },
+ { NULL, F71808A_PME, },
};
static void enable_dev(struct device *dev)
diff --git a/src/superio/fintek/f71859/superio.c b/src/superio/fintek/f71859/superio.c
index 6de68df501fc..976cb87f8f4c 100644
--- a/src/superio/fintek/f71859/superio.c
+++ b/src/superio/fintek/f71859/superio.c
@@ -42,7 +42,7 @@ static struct device_operations ops = {
static struct pnp_info pnp_dev_info[] = {
/* TODO: Some of the 0x07f8 etc. values may not be correct. */
- { &ops, F71859_SP1, PNP_IO0 | PNP_IRQ0, 0x07f8, },
+ { NULL, F71859_SP1, PNP_IO0 | PNP_IRQ0, 0x07f8, },
};
static void enable_dev(struct device *dev)
diff --git a/src/superio/fintek/f71863fg/superio.c b/src/superio/fintek/f71863fg/superio.c
index 3ed269e67736..bfa0aee126c4 100644
--- a/src/superio/fintek/f71863fg/superio.c
+++ b/src/superio/fintek/f71863fg/superio.c
@@ -50,16 +50,16 @@ static struct device_operations ops = {
static struct pnp_info pnp_dev_info[] = {
/* TODO: Some of the 0x07f8 etc. values may not be correct. */
- { &ops, F71863FG_FDC, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
- { &ops, F71863FG_SP1, PNP_IO0 | PNP_IRQ0, 0x07f8, },
- { &ops, F71863FG_SP2, PNP_IO0 | PNP_IRQ0, 0x07f8, },
- { &ops, F71863FG_PP, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
- { &ops, F71863FG_HWM, PNP_IO0 | PNP_IRQ0, 0x0ff8, },
- { &ops, F71863FG_KBC, PNP_IO0 | PNP_IRQ0 | PNP_IRQ1, 0x07ff, },
- { &ops, F71863FG_GPIO, },
- { &ops, F71863FG_VID, PNP_IO0, 0x07f8, },
- { &ops, F71863FG_SPI, },
- { &ops, F71863FG_PME, },
+ { NULL, F71863FG_FDC, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
+ { NULL, F71863FG_SP1, PNP_IO0 | PNP_IRQ0, 0x07f8, },
+ { NULL, F71863FG_SP2, PNP_IO0 | PNP_IRQ0, 0x07f8, },
+ { NULL, F71863FG_PP, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
+ { NULL, F71863FG_HWM, PNP_IO0 | PNP_IRQ0, 0x0ff8, },
+ { NULL, F71863FG_KBC, PNP_IO0 | PNP_IRQ0 | PNP_IRQ1, 0x07ff, },
+ { NULL, F71863FG_GPIO, },
+ { NULL, F71863FG_VID, PNP_IO0, 0x07f8, },
+ { NULL, F71863FG_SPI, },
+ { NULL, F71863FG_PME, },
};
static void enable_dev(struct device *dev)
diff --git a/src/superio/fintek/f71869ad/superio.c b/src/superio/fintek/f71869ad/superio.c
index 43a9ee61ccd5..7fc4db41c2bf 100644
--- a/src/superio/fintek/f71869ad/superio.c
+++ b/src/superio/fintek/f71869ad/superio.c
@@ -106,16 +106,16 @@ static struct device_operations ops = {
*
*/
static struct pnp_info pnp_dev_info[] = {
- { &ops, F71869AD_FDC, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
- { &ops, F71869AD_SP1, PNP_IO0 | PNP_IRQ0, 0x07f8, },
- { &ops, F71869AD_SP2, PNP_IO0 | PNP_IRQ0, 0x07f8, },
- { &ops, F71869AD_PP, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
- { &ops, F71869AD_HWM, PNP_IO0 | PNP_IRQ0, 0x0ff8, },
- { &ops, F71869AD_KBC, PNP_IO0 | PNP_IRQ0 | PNP_IRQ1, 0x07ff, },
- { &ops, F71869AD_GPIO, },
- { &ops, F71869AD_WDT, },
- { &ops, F71869AD_CIR, PNP_IO0 | PNP_IRQ0, 0x07f8, },
- { &ops, F71869AD_PME, },
+ { NULL, F71869AD_FDC, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
+ { NULL, F71869AD_SP1, PNP_IO0 | PNP_IRQ0, 0x07f8, },
+ { NULL, F71869AD_SP2, PNP_IO0 | PNP_IRQ0, 0x07f8, },
+ { NULL, F71869AD_PP, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
+ { NULL, F71869AD_HWM, PNP_IO0 | PNP_IRQ0, 0x0ff8, },
+ { NULL, F71869AD_KBC, PNP_IO0 | PNP_IRQ0 | PNP_IRQ1, 0x07ff, },
+ { NULL, F71869AD_GPIO, },
+ { NULL, F71869AD_WDT, },
+ { NULL, F71869AD_CIR, PNP_IO0 | PNP_IRQ0, 0x07f8, },
+ { NULL, F71869AD_PME, },
};
static void enable_dev(struct device *dev)
diff --git a/src/superio/fintek/f71872/superio.c b/src/superio/fintek/f71872/superio.c
index c2163bd9ccb4..f26a0c64647e 100644
--- a/src/superio/fintek/f71872/superio.c
+++ b/src/superio/fintek/f71872/superio.c
@@ -48,15 +48,15 @@ static struct device_operations ops = {
static struct pnp_info pnp_dev_info[] = {
/* TODO: Some of the 0x07f8 etc. values may not be correct. */
- { &ops, F71872_FDC, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
- { &ops, F71872_SP1, PNP_IO0 | PNP_IRQ0, 0x07f8, },
- { &ops, F71872_SP2, PNP_IO0 | PNP_IRQ0, 0x07f8, },
- { &ops, F71872_PP, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
- { &ops, F71872_HWM, PNP_IO0 | PNP_IRQ0, 0x0ff8, },
- { &ops, F71872_KBC, PNP_IO0 | PNP_IRQ0 | PNP_IRQ1, 0x07ff, },
- { &ops, F71872_GPIO, PNP_IRQ0, },
- { &ops, F71872_VID, PNP_IO0, 0x0ff8, },
- { &ops, F71872_PM, },
+ { NULL, F71872_FDC, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
+ { NULL, F71872_SP1, PNP_IO0 | PNP_IRQ0, 0x07f8, },
+ { NULL, F71872_SP2, PNP_IO0 | PNP_IRQ0, 0x07f8, },
+ { NULL, F71872_PP, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
+ { NULL, F71872_HWM, PNP_IO0 | PNP_IRQ0, 0x0ff8, },
+ { NULL, F71872_KBC, PNP_IO0 | PNP_IRQ0 | PNP_IRQ1, 0x07ff, },
+ { NULL, F71872_GPIO, PNP_IRQ0, },
+ { NULL, F71872_VID, PNP_IO0, 0x0ff8, },
+ { NULL, F71872_PM, },
};
static void enable_dev(struct device *dev)
diff --git a/src/superio/fintek/f81216h/superio.c b/src/superio/fintek/f81216h/superio.c
index 17483c317756..279187611ab1 100644
--- a/src/superio/fintek/f81216h/superio.c
+++ b/src/superio/fintek/f81216h/superio.c
@@ -94,11 +94,11 @@ static struct device_operations ops = {
};
static struct pnp_info pnp_dev_info[] = {
- { &ops, F81216H_SP1, PNP_IO0 | PNP_IRQ0, 0x07f8, },
- { &ops, F81216H_SP2, PNP_IO0 | PNP_IRQ0, 0x07f8, },
- { &ops, F81216H_SP3, PNP_IO0 | PNP_IRQ0, 0x07f8, },
- { &ops, F81216H_SP4, PNP_IO0 | PNP_IRQ0, 0x07f8, },
- { &ops, F81216H_WDT, },
+ { NULL, F81216H_SP1, PNP_IO0 | PNP_IRQ0, 0x07f8, },
+ { NULL, F81216H_SP2, PNP_IO0 | PNP_IRQ0, 0x07f8, },
+ { NULL, F81216H_SP3, PNP_IO0 | PNP_IRQ0, 0x07f8, },
+ { NULL, F81216H_SP4, PNP_IO0 | PNP_IRQ0, 0x07f8, },
+ { NULL, F81216H_WDT, },
};
static void enable_dev(struct device *dev)
diff --git a/src/superio/fintek/f81865f/superio.c b/src/superio/fintek/f81865f/superio.c
index 5bc4f6e35b03..08cbd9016585 100644
--- a/src/superio/fintek/f81865f/superio.c
+++ b/src/superio/fintek/f81865f/superio.c
@@ -48,14 +48,14 @@ static struct device_operations ops = {
static struct pnp_info pnp_dev_info[] = {
/* TODO: Some of the 0x7f8 etc. values may not be correct. */
- { &ops, F81865F_FDC, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
- { &ops, F81865F_SP1, PNP_IO0 | PNP_IRQ0, 0x7f8, },
- { &ops, F81865F_SP2, PNP_IO0 | PNP_IRQ0, 0x7f8, },
- { &ops, F81865F_KBC, PNP_IO0 | PNP_IRQ0 | PNP_IRQ1, 0x07ff, },
- { &ops, F81865F_PP, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
- { &ops, F81865F_HWM, PNP_IO0 | PNP_IRQ0, 0xff8, },
- { &ops, F81865F_GPIO, PNP_IRQ0, },
- { &ops, F81865F_PME, },
+ { NULL, F81865F_FDC, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
+ { NULL, F81865F_SP1, PNP_IO0 | PNP_IRQ0, 0x7f8, },
+ { NULL, F81865F_SP2, PNP_IO0 | PNP_IRQ0, 0x7f8, },
+ { NULL, F81865F_KBC, PNP_IO0 | PNP_IRQ0 | PNP_IRQ1, 0x07ff, },
+ { NULL, F81865F_PP, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
+ { NULL, F81865F_HWM, PNP_IO0 | PNP_IRQ0, 0xff8, },
+ { NULL, F81865F_GPIO, PNP_IRQ0, },
+ { NULL, F81865F_PME, },
};
static void enable_dev(struct device *dev)
diff --git a/src/superio/fintek/f81866d/superio.c b/src/superio/fintek/f81866d/superio.c
index 938019d4b532..7678383bbd90 100644
--- a/src/superio/fintek/f81866d/superio.c
+++ b/src/superio/fintek/f81866d/superio.c
@@ -70,19 +70,19 @@ static struct device_operations ops = {
static struct pnp_info pnp_dev_info[] = {
/* TODO: Some of the 0x7f8 etc. values may not be correct. */
- { &ops, F81866D_FDC, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
- { &ops, F81866D_SP1, PNP_IO0 | PNP_IRQ0, 0x7f8, },
- { &ops, F81866D_SP2, PNP_IO0 | PNP_IRQ0, 0x7f8, },
- { &ops, F81866D_SP3, PNP_IO0 | PNP_IRQ0, 0x7f8, },
- { &ops, F81866D_SP4, PNP_IO0 | PNP_IRQ0, 0x7f8, },
- { &ops, F81866D_SP5, PNP_IO0 | PNP_IRQ0, 0x7f8, },
- { &ops, F81866D_SP6, PNP_IO0 | PNP_IRQ0, 0x7f8, },
- { &ops, F81866D_KBC, PNP_IO0 | PNP_IRQ0 | PNP_IRQ1, 0x07ff, },
- { &ops, F81866D_PP, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
- { &ops, F81866D_HWM, PNP_IO0 | PNP_IRQ0, 0xff8, },
- { &ops, F81866D_GPIO, PNP_IRQ0, },
- { &ops, F81866D_PME, },
- { &ops, F81866D_WDT, },
+ { NULL, F81866D_FDC, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
+ { NULL, F81866D_SP1, PNP_IO0 | PNP_IRQ0, 0x7f8, },
+ { NULL, F81866D_SP2, PNP_IO0 | PNP_IRQ0, 0x7f8, },
+ { NULL, F81866D_SP3, PNP_IO0 | PNP_IRQ0, 0x7f8, },
+ { NULL, F81866D_SP4, PNP_IO0 | PNP_IRQ0, 0x7f8, },
+ { NULL, F81866D_SP5, PNP_IO0 | PNP_IRQ0, 0x7f8, },
+ { NULL, F81866D_SP6, PNP_IO0 | PNP_IRQ0, 0x7f8, },
+ { NULL, F81866D_KBC, PNP_IO0 | PNP_IRQ0 | PNP_IRQ1, 0x07ff, },
+ { NULL, F81866D_PP, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
+ { NULL, F81866D_HWM, PNP_IO0 | PNP_IRQ0, 0xff8, },
+ { NULL, F81866D_GPIO, PNP_IRQ0, },
+ { NULL, F81866D_PME, },
+ { NULL, F81866D_WDT, },
};
static void enable_dev(struct device *dev)