fix up yet more annoying signed/unsigned and mixed type errors
This commit is contained in:
@@ -476,7 +476,8 @@ int devfsd_main (int argc, char **argv)
|
||||
if (fcntl (fd, F_SETFD, FD_CLOEXEC) != 0)
|
||||
devfsd_perror_msg_and_die("FD_CLOEXEC");
|
||||
|
||||
do_ioctl_and_die(fd, DEVFSDIOC_GET_PROTO_REV,(int )&proto_rev);
|
||||
if (ioctl (fd, DEVFSDIOC_GET_PROTO_REV, &proto_rev) == -1)
|
||||
msg_logger_and_die(LOG_ERR, "ioctl");
|
||||
|
||||
/*setup initial entries */
|
||||
for (curr = initial_symlinks; curr->dest != NULL; ++curr)
|
||||
|
@@ -1945,7 +1945,7 @@ static void process_dev (char *devname)
|
||||
{
|
||||
no_scsi();
|
||||
printf(" attempting to unregister hwif#%u\n", hwif);
|
||||
bb_ioctl(fd, HDIO_UNREGISTER_HWIF,(int *)hwif,"HDIO_UNREGISTER_HWIF");
|
||||
bb_ioctl(fd, HDIO_UNREGISTER_HWIF,(int *)(unsigned long)hwif,"HDIO_UNREGISTER_HWIF");
|
||||
}
|
||||
#endif
|
||||
#ifdef CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF
|
||||
@@ -1977,7 +1977,7 @@ static void process_dev (char *devname)
|
||||
else
|
||||
printf("set UDMA mode to %d\n", (piomode-200));
|
||||
}
|
||||
bb_ioctl(fd, HDIO_SET_PIO_MODE, (int *)piomode, "HDIO_SET_PIO_MODE");
|
||||
bb_ioctl(fd, HDIO_SET_PIO_MODE, (int *)(unsigned long)piomode, "HDIO_SET_PIO_MODE");
|
||||
}
|
||||
if (set_io32bit)
|
||||
{
|
||||
@@ -2435,7 +2435,7 @@ identify_abort:
|
||||
printf(" setting bus state to %d", busstate);
|
||||
bus_state_value(busstate);
|
||||
}
|
||||
bb_ioctl(fd, HDIO_SET_BUSSTATE, (int *)busstate, "HDIO_SET_BUSSTATE");
|
||||
bb_ioctl(fd, HDIO_SET_BUSSTATE, (int *)(unsigned long)busstate, "HDIO_SET_BUSSTATE");
|
||||
}
|
||||
#endif
|
||||
#ifdef CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF
|
||||
|
Reference in New Issue
Block a user