diff options
Diffstat (limited to 'miscutils/hdparm.c')
-rw-r--r-- | miscutils/hdparm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/miscutils/hdparm.c b/miscutils/hdparm.c index 4bf0d45ce..750cb499b 100644 --- a/miscutils/hdparm.c +++ b/miscutils/hdparm.c | |||
@@ -1945,7 +1945,7 @@ static void process_dev (char *devname) | |||
1945 | { | 1945 | { |
1946 | no_scsi(); | 1946 | no_scsi(); |
1947 | printf(" attempting to unregister hwif#%u\n", hwif); | 1947 | printf(" attempting to unregister hwif#%u\n", hwif); |
1948 | bb_ioctl(fd, HDIO_UNREGISTER_HWIF,(int *)hwif,"HDIO_UNREGISTER_HWIF"); | 1948 | bb_ioctl(fd, HDIO_UNREGISTER_HWIF,(int *)(unsigned long)hwif,"HDIO_UNREGISTER_HWIF"); |
1949 | } | 1949 | } |
1950 | #endif | 1950 | #endif |
1951 | #ifdef CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF | 1951 | #ifdef CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF |
@@ -1977,7 +1977,7 @@ static void process_dev (char *devname) | |||
1977 | else | 1977 | else |
1978 | printf("set UDMA mode to %d\n", (piomode-200)); | 1978 | printf("set UDMA mode to %d\n", (piomode-200)); |
1979 | } | 1979 | } |
1980 | bb_ioctl(fd, HDIO_SET_PIO_MODE, (int *)piomode, "HDIO_SET_PIO_MODE"); | 1980 | bb_ioctl(fd, HDIO_SET_PIO_MODE, (int *)(unsigned long)piomode, "HDIO_SET_PIO_MODE"); |
1981 | } | 1981 | } |
1982 | if (set_io32bit) | 1982 | if (set_io32bit) |
1983 | { | 1983 | { |
@@ -2435,7 +2435,7 @@ identify_abort: | |||
2435 | printf(" setting bus state to %d", busstate); | 2435 | printf(" setting bus state to %d", busstate); |
2436 | bus_state_value(busstate); | 2436 | bus_state_value(busstate); |
2437 | } | 2437 | } |
2438 | bb_ioctl(fd, HDIO_SET_BUSSTATE, (int *)busstate, "HDIO_SET_BUSSTATE"); | 2438 | bb_ioctl(fd, HDIO_SET_BUSSTATE, (int *)(unsigned long)busstate, "HDIO_SET_BUSSTATE"); |
2439 | } | 2439 | } |
2440 | #endif | 2440 | #endif |
2441 | #ifdef CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF | 2441 | #ifdef CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF |