mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
ide: qd65xx: Fix cast to pointer from integer of different size
Integer passed as pointer to drvdata should be cast to unsigned long to
avoid warning (compile testing on alpha architecture):
drivers/ide/qd65xx.c: In function ‘qd6580_init_dev’:
drivers/ide/qd65xx.c:312:27: warning:
cast to pointer from integer of different size [-Wint-to-pointer-cast]
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
1011b6908a
commit
5b10c23e18
@@ -299,7 +299,7 @@ static void __init qd6500_init_dev(ide_drive_t *drive)
|
|||||||
static void __init qd6580_init_dev(ide_drive_t *drive)
|
static void __init qd6580_init_dev(ide_drive_t *drive)
|
||||||
{
|
{
|
||||||
ide_hwif_t *hwif = drive->hwif;
|
ide_hwif_t *hwif = drive->hwif;
|
||||||
u16 t1, t2;
|
unsigned long t1, t2;
|
||||||
u8 base = (hwif->config_data & 0xff00) >> 8;
|
u8 base = (hwif->config_data & 0xff00) >> 8;
|
||||||
u8 config = QD_CONFIG(hwif);
|
u8 config = QD_CONFIG(hwif);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user