net: pcnet: fix I/O primitives for memory access
authorDaniel Schwierzeck <daniel.schwierzeck@gmail.com>
Sun, 3 May 2020 17:43:32 +0000 (19:43 +0200)
committerTom Rini <trini@konsulko.com>
Mon, 4 May 2020 12:57:50 +0000 (08:57 -0400)
commit8510580f2e85a8687b40fe5fc3d8c060e5278505
tree47e5ad275b59e6d71afed646332e1f2f8925201e
parent04da42770b0cc3bea8841972bfc9568299ece826
net: pcnet: fix I/O primitives for memory access

Commit 69529c912059 ("net: pcnet: Switch to PCI memory access")
switched from PCI IO access to PCI memory access without updating
the I/O primitives. Contrary to SH, the primitives for memory
access and IO access are implemented differently. Thus doing
memory access with IO port primitives breaks the driver on
MIPS Malta board.

Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
drivers/net/pcnet.c