media: i2c: max9271: Add header include guards to max9271.h
authorLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Sun, 2 Jan 2022 22:48:03 +0000 (22:48 +0000)
committerMauro Carvalho Chehab <mchehab@kernel.org>
Mon, 29 Apr 2024 08:17:52 +0000 (09:17 +0100)
Protect against multiple inclusions of the max9271.h header with include
guards.

Link: https://lore.kernel.org/linux-media/20220102224803.27463-1-laurent.pinchart+renesas@ideasonboard.com
Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
Reviewed-by: Jacopo Mondi <jacopo+renesas@jmondi.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
drivers/media/i2c/max9271.h

index dc5e4e70ba6f5c897da1ee6adb824f9c754748fe..0bf1d40811eba9c4436766158dd274452650b0e4 100644 (file)
@@ -8,6 +8,9 @@
  * Copyright (C) 2015 Cogent Embedded, Inc.
  */
 
+#ifndef __MEDIA_I2C_MAX9271_H__
+#define __MEDIA_I2C_MAX9271_H__
+
 #include <linux/i2c.h>
 
 #define MAX9271_DEFAULT_ADDR   0x40
@@ -231,3 +234,5 @@ int max9271_set_deserializer_address(struct max9271_device *dev, u8 addr);
  * Return 0 on success or a negative error code on failure
  */
 int max9271_set_translation(struct max9271_device *dev, u8 source, u8 dest);
+
+#endif /* __MEDIA_I2C_MAX9271_H__ */