mirror of
https://github.com/opnsense/src.git
synced 2026-06-14 19:20:18 -04:00
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:
parent
a0ad3760a2
commit
4ada418a9b
3 changed files with 3 additions and 3 deletions
|
|
@ -287,7 +287,7 @@ int pcprobe(struct isa_device *dev)
|
|||
}
|
||||
}
|
||||
kbd_wait();
|
||||
return 1;
|
||||
return (IO_KBDSIZE);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -287,7 +287,7 @@ int pcprobe(struct isa_device *dev)
|
|||
}
|
||||
}
|
||||
kbd_wait();
|
||||
return 1;
|
||||
return (IO_KBDSIZE);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -287,7 +287,7 @@ int pcprobe(struct isa_device *dev)
|
|||
}
|
||||
}
|
||||
kbd_wait();
|
||||
return 1;
|
||||
return (IO_KBDSIZE);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue