Replaced the return (1)'s with return (IO_KBDSIZE) in the probe code so

that the printfs during the probing prints the range instead of just the
start address.
This commit is contained in:
Rodney W. Grimes 1993-08-28 13:26:30 +00:00
parent a0ad3760a2
commit 4ada418a9b
3 changed files with 3 additions and 3 deletions

View file

@ -287,7 +287,7 @@ int pcprobe(struct isa_device *dev)
}
}
kbd_wait();
return 1;
return (IO_KBDSIZE);
}

View file

@ -287,7 +287,7 @@ int pcprobe(struct isa_device *dev)
}
}
kbd_wait();
return 1;
return (IO_KBDSIZE);
}

View file

@ -287,7 +287,7 @@ int pcprobe(struct isa_device *dev)
}
}
kbd_wait();
return 1;
return (IO_KBDSIZE);
}