Add a header include guard just in case. Signed-off-by: Masahiro Yamada <yamada.masahiro@xxxxxxxxxxxxx> --- include/linux/raid_class.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/linux/raid_class.h b/include/linux/raid_class.h index 5cdfcb873a8f..b62e42d8bb17 100644 --- a/include/linux/raid_class.h +++ b/include/linux/raid_class.h @@ -4,6 +4,10 @@ * * Copyright (c) 2005 - James Bottomley <James.Bottomley@xxxxxxxxxxxx> */ + +#ifndef _LINUX_RAID_CLASS_H +#define _LINUX_RAID_CLASS_H + #include <linux/transport_class.h> struct raid_template { @@ -81,3 +85,4 @@ void raid_class_release(struct raid_template *); int __must_check raid_component_add(struct raid_template *, struct device *, struct device *); +#endif /* _LINUX_RAID_CLASS_H */ -- 2.17.1