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-19 15:25:58 -0400 |
commit | 8c89cf23cc9d45f58779113f89ec6f2301258fe1 (patch) | |
tree | 4df3c94c97c334fac80abe46ade02631e58a08f2 | |
parent | 42d3ce7b6539d3ec5d3e55be5ef86682c8d3208d (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> |