Commit a102a0888799d389c033fe22db3f1e153390fcc5

Authored by Nobuhiro Iwamatsu
Committed by Paul Mundt
1 parent ad2a8e7ea4

sh: userimask.c needs linux/stat.h

This fix the problem that S_IRUSR and S_IWUSR are not solved in userimask.c.

-----
CC      drivers/usb/host/r8a66597-hcd.o
drivers/sh/intc/userimask.c:57: error: ‘S_IRUSR’ undeclared here (not in a function)
drivers/sh/intc/userimask.c:57: error: ‘S_IWUSR’ undeclared here (not in a function)
CC      drivers/watchdog/shwdt.o
-----

Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>

Showing 1 changed file with 1 additions and 0 deletions Side-by-side Diff

drivers/sh/intc/userimask.c
... ... @@ -13,6 +13,7 @@
13 13 #include <linux/sysdev.h>
14 14 #include <linux/init.h>
15 15 #include <linux/io.h>
  16 +#include <linux/stat.h>
16 17 #include <asm/sizes.h>
17 18 #include "internals.h"
18 19