mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-29 02:22:43 +00:00
fix return type so that it returns both bytes (instead of just first)
Found-by: conrads@neosoft.com Fix-by: Luigi
This commit is contained in:
parent
d927c2c392
commit
1d9dbc1a0d
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=31135
@ -23,7 +23,7 @@
|
|||||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
* SUCH DAMAGE.
|
* SUCH DAMAGE.
|
||||||
*
|
*
|
||||||
* $Id: pnpinfo.c,v 1.16 1996/05/05 23:56:38 smpatel Exp $
|
* $Id: pnpinfo.c,v 1.1.1.1 1997/09/19 15:36:00 jmg Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
@ -61,7 +61,7 @@ pnp_read(int d)
|
|||||||
return inb( (rd_port << 2) + 3) & 0xff;
|
return inb( (rd_port << 2) + 3) & 0xff;
|
||||||
}
|
}
|
||||||
|
|
||||||
u_char
|
u_short
|
||||||
pnp_readw(int d)
|
pnp_readw(int d)
|
||||||
{
|
{
|
||||||
int c = pnp_read(d) << 8 ;
|
int c = pnp_read(d) << 8 ;
|
||||||
|
Loading…
Reference in New Issue
Block a user