From: Masahiro Yamada Date: Tue, 20 Aug 2019 02:50:57 +0000 (+0900) Subject: mtd: rawnand: sharpsl: add include guard to linux/mtd/sharpsl.h X-Git-Tag: v5.4-rc1~87^2~13^2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3342d2f88ef9519c58d76004afb2c8fd93b3e418;p=thirdparty%2Flinux.git mtd: rawnand: sharpsl: add include guard to linux/mtd/sharpsl.h Add a header include guard just in case. Signed-off-by: Masahiro Yamada Signed-off-by: Miquel Raynal --- diff --git a/include/linux/mtd/sharpsl.h b/include/linux/mtd/sharpsl.h index 01306ebe266da..d2c3cf29e0d17 100644 --- a/include/linux/mtd/sharpsl.h +++ b/include/linux/mtd/sharpsl.h @@ -5,6 +5,9 @@ * Copyright (C) 2008 Dmitry Baryshkov */ +#ifndef _MTD_SHARPSL_H +#define _MTD_SHARPSL_H + #include #include #include @@ -16,3 +19,5 @@ struct sharpsl_nand_platform_data { unsigned int nr_partitions; const char *const *part_parsers; }; + +#endif /* _MTD_SHARPSL_H */