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:
rgrimes 1993-08-28 13:26:30 +00:00
parent b722f788aa
commit 914dc32d8f
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);
}