1
0
Fork 0

ata: libahci: Silence compiler warning on 64-bit

Commit 725c7b570f (ata: libahci_platform: move port_map parameters
into the AHCI structure) moves flags into the struct ahci_host_priv's
.flags field, which causes compiler warnings on 64-bit builds when that
value is cast to a void * pointer. Cast to an unsigned long so that the
subsequent cast to a pointer doesn't produce a warning.

Signed-off-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
hifive-unleashed-5.1
Thierry Reding 2014-08-01 16:30:37 +02:00 committed by Tejun Heo
parent 724f24ee65
commit c4121c650e
1 changed files with 1 additions and 1 deletions

View File

@ -426,7 +426,7 @@ int ahci_platform_init_host(struct platform_device *pdev,
}
/* prepare host */
pi.private_data = (void *)hpriv->flags;
pi.private_data = (void *)(unsigned long)hpriv->flags;
ahci_save_initial_config(dev, hpriv);