diff options
author | Stewart Smith <stewart@linux.ibm.com> | 2018-05-29 14:54:10 +1000 |
---|---|---|
committer | Stewart Smith <stewart@linux.ibm.com> | 2018-05-29 14:57:14 +1000 |
commit | 70d544de8739abbc381398cbfd07a6bd6dc8c1a5 (patch) | |
tree | 30b3044e6b07236348659c4ad7a52db00c5dac7b /hdata | |
parent | 44d0f8638bc1d35baccd59a154298fef0fb51775 (diff) | |
download | skiboot-70d544de8739abbc381398cbfd07a6bd6dc8c1a5.zip skiboot-70d544de8739abbc381398cbfd07a6bd6dc8c1a5.tar.gz skiboot-70d544de8739abbc381398cbfd07a6bd6dc8c1a5.tar.bz2 |
hdata/i2c.c: fix building with gcc8
hdata/test/../i2c.c:200:1: error: alignment 1 of ‘struct host_i2c_hdr’ is less than 4 [-Werror=packed-not-aligned]
} __packed;
^
Fixes: https://github.com/open-power/skiboot/issues/160
Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
Diffstat (limited to 'hdata')
-rw-r--r-- | hdata/i2c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hdata/i2c.c b/hdata/i2c.c index 5cb56fa..9bbec66 100644 --- a/hdata/i2c.c +++ b/hdata/i2c.c @@ -197,7 +197,7 @@ static bool is_zeros(const void *p, size_t size) struct host_i2c_hdr { const struct HDIF_array_hdr hdr; __be32 version; -} __packed; +} __packed __align(0x4); int parse_i2c_devs(const struct HDIF_common_hdr *hdr, int idata_index, struct dt_node *xscom) |