From: Vladimir 'phcoder' Serbinenko Date: Sat, 1 Oct 2011 19:14:03 +0000 (+0200) Subject: Remove packed attribute. X-Git-Tag: 2.00~726^2~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4fbface043999192346cb5cef3418254e752de06;p=thirdparty%2Fgrub.git Remove packed attribute. --- diff --git a/grub-core/bus/usb/ehci.c b/grub-core/bus/usb/ehci.c index 2ce2be1e0..fe5cf6eb8 100644 --- a/grub-core/bus/usb/ehci.c +++ b/grub-core/bus/usb/ehci.c @@ -288,7 +288,7 @@ struct grub_ehci_td grub_uint32_t link_td; /* pointer to next free/chained TD */ grub_uint32_t size; grub_uint32_t pad[1]; /* padding to some multiple of 32 bytes */ -} __attribute__ ((packed)); +}; /* EHCI Queue Head */ /* Align to 32-byte boundaries */ @@ -305,7 +305,7 @@ struct grub_ehci_qh struct grub_ehci_td td_overlay; /* TD overlay area = 64 bytes */ /* EHCI driver part */ grub_uint32_t pad[4]; /* padding to some multiple of 32 bytes */ -} __attribute__ ((packed)); +}; /* EHCI Periodic Frame Span Traversal Node */ /* Currently not supported */