Deleted Added
full compact
27c27
< * $FreeBSD: head/sys/boot/common/isapnp.c 50477 1999-08-28 01:08:13Z peter $
---
> * $FreeBSD: head/sys/boot/common/isapnp.c 64187 2000-08-03 09:14:02Z jhb $
42,44c42,43
< static void isapnp_write(int d, u_char r);
< static u_char isapnp_read(int d);
< static void isapnp_send_Initiation_LFSR();
---
> static void isapnp_write(int d, int r);
> static void isapnp_send_Initiation_LFSR(void);
61c60
< isapnp_write(int d, u_char r)
---
> isapnp_write(int d, int r)
67,73d65
< static u_char
< isapnp_read(int d)
< {
< outb (_PNP_ADDRESS, d);
< return (inb(isapnp_readport));
< }
<
79c71
< isapnp_send_Initiation_LFSR()
---
> isapnp_send_Initiation_LFSR(void)
170,171c162,164
< int large_len, limit;
< char *str;
---
> u_int limit;
> size_t large_len;
> u_char *str;
207c200
< if (isapnp_get_resource_info(str, large_len)) {
---
> if (isapnp_get_resource_info(str, (ssize_t)large_len)) {
213c206
< pi->pi_desc = str;
---
> pi->pi_desc = (char *)str;
221c214
< if (isapnp_get_resource_info(NULL, large_len))
---
> if (isapnp_get_resource_info(NULL, (ssize_t)large_len))