Stefan Reinauer has uploaded this change for review. ( https://review.coreboot.org/c/em100/+/77197?usp=email )
Change subject: em100.h: Use __packed ......................................................................
em100.h: Use __packed
__packed is defined in em100.h but has not been consistently used.
Change-Id: I7738cadbd77fe430327c33103da013a8c1e17a66 Signed-off-by: Stefan Reinauer stefan.reinauer@coreboot.org --- M em100.h 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/em100 refs/changes/97/77197/1
diff --git a/em100.h b/em100.h index e74516a..7113c0c 100644 --- a/em100.h +++ b/em100.h @@ -153,12 +153,12 @@ uint32_t signature; uint8_t data_type; uint8_t data_length; -} __attribute__ ((packed)); +} __packed;
struct em100_msg{ struct em100_msg_header header; uint8_t data[255]; -} __attribute__ ((packed)); +} __packed;
typedef enum { ht_checkpoint_1byte = 0x01,