summaryrefslogtreecommitdiff
path: root/src/drivers/i2c/pcf8523
diff options
context:
space:
mode:
authorJan Samek <jan.samek@siemens.com>2023-04-27 10:39:27 +0200
committerFelix Held <felix-coreboot@felixheld.de>2023-04-28 13:38:33 +0000
commitedda0f94e58a510f6e13bf632c6dc7294840ac43 (patch)
treeee053ebe935070bd8ccb068ca031cd3fa6f0129f /src/drivers/i2c/pcf8523
parent8ba2ecf2b40b9bffc20ccad0c76ba2eefcfd1396 (diff)
treewide: Add missing include guards to chip.h
Some of the chip.h files in the tree are missing the include guards. This patch adds them in order to avoid potential redefinions of symbols contained in these headers, when they are included multiple times in static.c generated by sconfig. Change-Id: I550a514e72a8dd4db602e7ceffccd81aa36446e3 Signed-off-by: Jan Samek <jan.samek@siemens.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/74749 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/drivers/i2c/pcf8523')
-rw-r--r--src/drivers/i2c/pcf8523/chip.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/drivers/i2c/pcf8523/chip.h b/src/drivers/i2c/pcf8523/chip.h
index b318da3aae..3c32599975 100644
--- a/src/drivers/i2c/pcf8523/chip.h
+++ b/src/drivers/i2c/pcf8523/chip.h
@@ -2,6 +2,9 @@
#include "pcf8523.h"
+#ifndef __DRIVERS_I2C_PCF8523_CHIP_H__
+#define __DRIVERS_I2C_PCF8523_CHIP_H__
+
struct drivers_i2c_pcf8523_config {
unsigned char cap_sel; /* Internal capacitor selection */
unsigned char second_int_en; /* Enable IRQ for seconds */
@@ -29,3 +32,5 @@ struct drivers_i2c_pcf8523_config {
unsigned char user_day; /* User day to set */
unsigned char user_weekday; /* User weekday to set */
};
+
+#endif /* __DRIVERS_I2C_PCF8523_CHIP_H__ */