aspeed-lpc-ctrl: include linux/types.h for uapi header
The newly added header file triggers a sanity check:
usr/include/linux/aspeed-lpc-ctrl.h:44: found __[us]{8,16,32,64} type without #include <linux/types.h>
We should include linux/types.h explicitly to ensure the header
can be included from user space.
Fixes: 6c4e976785
("drivers/misc: Add Aspeed LPC control driver")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Joel Stanley <joel@jms.id.au>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
8ff0c5664a
commit
f580ff0e40
|
@ -11,6 +11,7 @@
|
|||
#define _UAPI_LINUX_ASPEED_LPC_CTRL_H
|
||||
|
||||
#include <linux/ioctl.h>
|
||||
#include <linux/types.h>
|
||||
|
||||
/* Window types */
|
||||
#define ASPEED_LPC_CTRL_WINDOW_FLASH 1
|
||||
|
|
Loading…
Reference in New Issue