Commit 22c336d0 authored by Kent Overstreet's avatar Kent Overstreet

signal: Kill bogus dependency on list.h

list_head is in types.h, not list.h.
Signed-off-by: default avatarKent Overstreet <kent.overstreet@linux.dev>
parent eee51b0a
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
#define _LINUX_SIGNAL_H #define _LINUX_SIGNAL_H
#include <linux/bug.h> #include <linux/bug.h>
#include <linux/list.h>
#include <linux/signal_types.h> #include <linux/signal_types.h>
#include <linux/string.h> #include <linux/string.h>
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* Basic signal handling related data type definitions: * Basic signal handling related data type definitions:
*/ */
#include <linux/list.h> #include <linux/types.h>
#include <uapi/linux/signal.h> #include <uapi/linux/signal.h>
typedef struct kernel_siginfo { typedef struct kernel_siginfo {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment