mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
mfd: twl4030-irq: Fix cast to restricted __le32 warning
Silences Sparse warning(s): drivers/mfd/twl4030-irq.c:573:40: warning: cast to restricted __le32 drivers/mfd/twl4030-irq.c:573:40: warning: cast to restricted __le32 drivers/mfd/twl4030-irq.c:573:40: warning: cast to restricted __le32 drivers/mfd/twl4030-irq.c:573:40: warning: cast to restricted __le32 drivers/mfd/twl4030-irq.c:573:40: warning: cast to restricted __le32 drivers/mfd/twl4030-irq.c:573:40: warning: cast to restricted __le32 Cc: Tony Lindgren <tony@atomide.com> Cc: Kai Svahn <kai.svahn@nokia.com> Cc: Syed Khasim <x0khasim@ti.com> Cc: linux-omap@vger.kernel.org Signed-off-by: Lee Jones <lee.jones@linaro.org>
This commit is contained in:
parent
6fef0d4ea5
commit
b174015b1d
1 changed files with 1 additions and 1 deletions
|
@ -561,7 +561,7 @@ static inline int sih_read_isr(const struct sih *sih)
|
|||
int status;
|
||||
union {
|
||||
u8 bytes[4];
|
||||
u32 word;
|
||||
__le32 word;
|
||||
} isr;
|
||||
|
||||
/* FIXME need retry-on-error ... */
|
||||
|
|
Loading…
Reference in a new issue