diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2022-06-09 15:19:01 -0400 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@gmail.com> | 2022-06-16 22:01:09 -0400 |
commit | 503b2f6af9f7e15f459276a9127da2066ca478cf (patch) | |
tree | 95b2817854ea55dcd1672a260368e167bdb8fd20 | |
parent | aa4f2668a6b27877cb7653e64583c42046bde2c2 (diff) |
ACPI/APEI: Add missing include
The upcoming patch to switch tracing from seq_buf to printbuf means
we're no longer pulling in headers that we used to; this adds a missing
include so things don't break.
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
-rw-r--r-- | drivers/acpi/apei/erst-dbg.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/acpi/apei/erst-dbg.c b/drivers/acpi/apei/erst-dbg.c index c740f0faad39..90aa034dceb0 100644 --- a/drivers/acpi/apei/erst-dbg.c +++ b/drivers/acpi/apei/erst-dbg.c @@ -11,6 +11,7 @@ * Author: Huang Ying <ying.huang@intel.com> */ +#include <linux/fs.h> #include <linux/kernel.h> #include <linux/module.h> #include <linux/uaccess.h> |