]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
Remove packed attribute.
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Sat, 1 Oct 2011 19:14:03 +0000 (21:14 +0200)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Sat, 1 Oct 2011 19:14:03 +0000 (21:14 +0200)
grub-core/bus/usb/ehci.c

index 2ce2be1e0ae1eb1d42807a54522d5fb0f1b68c60..fe5cf6eb85b60310f1c86edd95b2d1de82dd1f9e 100644 (file)
@@ -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 */