From: Thierry Reding <treding@xxxxxxxxxx> Commit 725c7b570fda (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. Rather than adding additional casting to silence the warning, turn the flags field into a unsigned long. Signed-off-by: Thierry Reding <treding@xxxxxxxxxx> --- drivers/ata/ahci.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/ata/ahci.h b/drivers/ata/ahci.h index 59ae0ee00149..e68532ca3826 100644 --- a/drivers/ata/ahci.h +++ b/drivers/ata/ahci.h @@ -317,7 +317,7 @@ struct ahci_port_priv { struct ahci_host_priv { /* Input fields */ - unsigned int flags; /* AHCI_HFLAG_* */ + unsigned long flags; /* AHCI_HFLAG_* */ u32 force_port_map; /* force port map */ u32 mask_port_map; /* mask out particular bits */ -- 2.0.3 -- To unsubscribe from this list: send the line "unsubscribe linux-ide" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html