Commit 037af200 authored by Kai Germaschewski's avatar Kai Germaschewski

Fix compile time warning in serial.c

parent 415f453c
...@@ -5226,7 +5226,8 @@ static struct pnp_board pnp_devices[] __devinitdata = { ...@@ -5226,7 +5226,8 @@ static struct pnp_board pnp_devices[] __devinitdata = {
static void inline avoid_irq_share(struct pci_dev *dev) static void inline avoid_irq_share(struct pci_dev *dev)
{ {
int i, map = 0x1FF8; int i;
unsigned long map = 0x1FF8;
struct serial_state *state = rs_table; struct serial_state *state = rs_table;
struct isapnp_irq *irq; struct isapnp_irq *irq;
struct isapnp_resources *res = dev->sysdata; struct isapnp_resources *res = dev->sysdata;
......
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