From: Krzysztof Kozlowski Date: Sat, 4 Jan 2020 14:33:47 +0000 (+0100) Subject: ide: ht6560b: Fix cast to pointer from integer of different size X-Git-Tag: v5.6-rc1~118^2~5 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=1011b6908a74755b2385d4cc569e9d061532ad53;p=users%2Fjedix%2Flinux-maple.git ide: ht6560b: 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/ht6560b.c: In function ‘ht6560b_init_dev’: drivers/ide/ht6560b.c:318:27: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] Signed-off-by: Krzysztof Kozlowski Signed-off-by: David S. Miller --- diff --git a/drivers/ide/ht6560b.c b/drivers/ide/ht6560b.c index 0dae65ac7d6d9..743bc3693ac8a 100644 --- a/drivers/ide/ht6560b.c +++ b/drivers/ide/ht6560b.c @@ -310,7 +310,7 @@ static void __init ht6560b_init_dev(ide_drive_t *drive) { ide_hwif_t *hwif = drive->hwif; /* Setting default configurations for drives. */ - int t = (HT_CONFIG_DEFAULT << 8) | HT_TIMING_DEFAULT; + unsigned long t = (HT_CONFIG_DEFAULT << 8) | HT_TIMING_DEFAULT; if (hwif->channel) t |= (HT_SECONDARY_IF << 8);