mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-19 08:05:27 +08:00
pcmcia: xirc2ps_cs bugfix
We need to set io_lines to 10 unconditionally. Reported-by: Komuro <komurojun-mbn@nifty.com> CC: netdev@vger.kernel.org Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
fe622e76fd
commit
4914c7f881
@ -808,6 +808,7 @@ xirc2ps_config(struct pcmcia_device * link)
|
||||
}
|
||||
|
||||
link->resource[0]->flags |= IO_DATA_PATH_WIDTH_16;
|
||||
link->io_lines = 10;
|
||||
if (local->modem) {
|
||||
int pass;
|
||||
|
||||
@ -839,7 +840,6 @@ xirc2ps_config(struct pcmcia_device * link)
|
||||
}
|
||||
printk(KNOT_XIRC "no ports available\n");
|
||||
} else {
|
||||
link->io_lines = 10;
|
||||
link->resource[0]->end = 16;
|
||||
for (ioaddr = 0x300; ioaddr < 0x400; ioaddr += 0x10) {
|
||||
link->resource[0]->start = ioaddr;
|
||||
|
Loading…
Reference in New Issue
Block a user