summaryrefslogtreecommitdiffstats
path: root/include/linux/pstore.h
diff options
context:
space:
mode:
authorKees Cook2018-11-01 23:30:05 +0100
committerKees Cook2018-12-04 01:52:35 +0100
commit4af62a6423d0ad98e3eee2bec4305dde8deefefe (patch)
treeee74473a5ad961ff9cad8111d6eb18a4b83e88ee /include/linux/pstore.h
parentpstore: Improve and update some comments and status output (diff)
downloadkernel-qcow2-linux-4af62a6423d0ad98e3eee2bec4305dde8deefefe.tar.gz
kernel-qcow2-linux-4af62a6423d0ad98e3eee2bec4305dde8deefefe.tar.xz
kernel-qcow2-linux-4af62a6423d0ad98e3eee2bec4305dde8deefefe.zip
pstore: Replace open-coded << with BIT()
Minor clean-up to use BIT() (as already done in pstore_ram.h). Signed-off-by: Kees Cook <keescook@chromium.org>
Diffstat (limited to 'include/linux/pstore.h')
-rw-r--r--include/linux/pstore.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/pstore.h b/include/linux/pstore.h
index 81669aa80027..f46e5df76b58 100644
--- a/include/linux/pstore.h
+++ b/include/linux/pstore.h
@@ -192,10 +192,10 @@ struct pstore_info {
};
/* Supported frontends */
-#define PSTORE_FLAGS_DMESG (1 << 0)
-#define PSTORE_FLAGS_CONSOLE (1 << 1)
-#define PSTORE_FLAGS_FTRACE (1 << 2)
-#define PSTORE_FLAGS_PMSG (1 << 3)
+#define PSTORE_FLAGS_DMESG BIT(0)
+#define PSTORE_FLAGS_CONSOLE BIT(1)
+#define PSTORE_FLAGS_FTRACE BIT(2)
+#define PSTORE_FLAGS_PMSG BIT(3)
extern int pstore_register(struct pstore_info *);
extern void pstore_unregister(struct pstore_info *);