Commit 4a4b119b authored by Jan Kiszka's avatar Jan Kiszka Committed by Linus Walleij

gpio: sch: Remove write-only core_base

Signed-off-by: default avatarJan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 1e9aa2a8
...@@ -23,7 +23,6 @@ struct sch_gpio { ...@@ -23,7 +23,6 @@ struct sch_gpio {
struct gpio_chip chip; struct gpio_chip chip;
spinlock_t lock; spinlock_t lock;
unsigned short iobase; unsigned short iobase;
unsigned short core_base;
unsigned short resume_base; unsigned short resume_base;
}; };
...@@ -166,7 +165,6 @@ static int sch_gpio_probe(struct platform_device *pdev) ...@@ -166,7 +165,6 @@ static int sch_gpio_probe(struct platform_device *pdev)
switch (pdev->id) { switch (pdev->id) {
case PCI_DEVICE_ID_INTEL_SCH_LPC: case PCI_DEVICE_ID_INTEL_SCH_LPC:
sch->core_base = 0;
sch->resume_base = 10; sch->resume_base = 10;
sch->chip.ngpio = 14; sch->chip.ngpio = 14;
...@@ -185,19 +183,16 @@ static int sch_gpio_probe(struct platform_device *pdev) ...@@ -185,19 +183,16 @@ static int sch_gpio_probe(struct platform_device *pdev)
break; break;
case PCI_DEVICE_ID_INTEL_ITC_LPC: case PCI_DEVICE_ID_INTEL_ITC_LPC:
sch->core_base = 0;
sch->resume_base = 5; sch->resume_base = 5;
sch->chip.ngpio = 14; sch->chip.ngpio = 14;
break; break;
case PCI_DEVICE_ID_INTEL_CENTERTON_ILB: case PCI_DEVICE_ID_INTEL_CENTERTON_ILB:
sch->core_base = 0;
sch->resume_base = 21; sch->resume_base = 21;
sch->chip.ngpio = 30; sch->chip.ngpio = 30;
break; break;
case PCI_DEVICE_ID_INTEL_QUARK_X1000_ILB: case PCI_DEVICE_ID_INTEL_QUARK_X1000_ILB:
sch->core_base = 0;
sch->resume_base = 2; sch->resume_base = 2;
sch->chip.ngpio = 8; sch->chip.ngpio = 8;
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment