You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
[PATCH] sdladrv.c build fix
gcc4 doesn't allow typecasted lvals. Cc: "David S. Miller" <davem@davemloft.net> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
d6a1a64aec
commit
09071e35f9
@@ -1994,7 +1994,7 @@ static int detect_s514 (sdlahw_t* hw)
|
||||
modname, hw->irq);
|
||||
|
||||
/* map the physical PCI memory to virtual memory */
|
||||
(void *)hw->dpmbase = ioremap((unsigned long)S514_mem_base_addr,
|
||||
hw->dpmbase = ioremap((unsigned long)S514_mem_base_addr,
|
||||
(unsigned long)MAX_SIZEOF_S514_MEMORY);
|
||||
/* map the physical control register memory to virtual memory */
|
||||
hw->vector = (unsigned long)ioremap(
|
||||
|
||||
Reference in New Issue
Block a user