summaryrefslogtreecommitdiffstats
path: root/src/include/device/i2c.h
diff options
context:
space:
mode:
authorLee Leahy <leroy.p.leahy@intel.com>2017-03-07 15:11:07 -0800
committerMartin Roth <martinroth@google.com>2017-03-12 15:46:23 +0100
commit6625ecc3448b59b6adde3f10674cd578f06f786f (patch)
tree489719e94b16ce5fd9659d2d3fad5b85864f84df /src/include/device/i2c.h
parent84d20d0eb3869d7babaeed7cfbe53f9edad48850 (diff)
downloadcoreboot-6625ecc3448b59b6adde3f10674cd578f06f786f.tar.gz
coreboot-6625ecc3448b59b6adde3f10674cd578f06f786f.tar.bz2
coreboot-6625ecc3448b59b6adde3f10674cd578f06f786f.zip
src/include: Open brace on same line as enum or struct
Fix the following errors and warning detected by checkpatch.pl: ERROR: open brace '{' following enum go on the same line ERROR: open brace '{' following struct go on the same line ERROR: that open brace { should be on the previous line WARNING: missing space after struct definition TEST=Build and run on Galileo Gen2 Change-Id: I856235d0cc3a3e59376df52561b17b872b3416b2 Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com> Reviewed-on: https://review.coreboot.org/18653 Tested-by: build bot (Jenkins) Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/include/device/i2c.h')
-rw-r--r--src/include/device/i2c.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/include/device/i2c.h b/src/include/device/i2c.h
index b3a5ccadd5fa..6115bd15e855 100644
--- a/src/include/device/i2c.h
+++ b/src/include/device/i2c.h
@@ -32,8 +32,7 @@ enum i2c_address_mode {
I2C_MODE_10_BIT
};
-struct i2c_seg
-{
+struct i2c_seg {
int read;
uint8_t chip;
uint8_t *buf;
@@ -89,8 +88,10 @@ static inline int i2c_transfer(unsigned int bus, struct i2c_seg *segments,
static inline int i2c_read_raw(unsigned int bus, uint8_t chip, uint8_t *data,
int len)
{
- struct i2c_seg seg =
- { .read = 1, .chip = chip, .buf = data, .len = len };
+ struct i2c_seg seg = {
+ .read = 1, .chip = chip, .buf = data, .len = len
+ };
+
return i2c_transfer(bus, &seg, 1);
}
@@ -102,8 +103,10 @@ static inline int i2c_read_raw(unsigned int bus, uint8_t chip, uint8_t *data,
static inline int i2c_write_raw(unsigned int bus, uint8_t chip, uint8_t *data,
int len)
{
- struct i2c_seg seg =
- { .read = 0, .chip = chip, .buf = data, .len = len };
+ struct i2c_seg seg = {
+ .read = 0, .chip = chip, .buf = data, .len = len
+ };
+
return i2c_transfer(bus, &seg, 1);
}