diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2022-06-09 15:19:01 -0400 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2022-08-29 18:39:17 -0400 |
commit | ed6689bb427dbb4fc73ba513e1df7b165df3552b (patch) | |
tree | b1a41f999637c363450cb02707198ca3a28d0059 | |
parent | d0e5809fd79216b4a13b70a7fabdbb2977befdc8 (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>
Cc: linux-acpi@vger.kernel.org
Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.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 8bc71cdc2270..370993c9c381 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> |