diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-03-09 00:07:44 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-03-09 18:02:22 +0100 |
commit | 885fdebc13b13307555e4b837fae604bcc4e72b4 (patch) | |
tree | e9159e91fd69d36a80aa10f927563583a49dbfdf /src/udev/mtd_probe | |
parent | db93e063bdffe0a8b95fcc522aeacddf62d1a9f9 (diff) |
tree-wide: use _packed_ macro instead of raw gcc __attribute__
Diffstat (limited to 'src/udev/mtd_probe')
-rw-r--r-- | src/udev/mtd_probe/mtd_probe.c | 4 | ||||
-rw-r--r-- | src/udev/mtd_probe/mtd_probe.h | 6 |
2 files changed, 6 insertions, 4 deletions
diff --git a/src/udev/mtd_probe/mtd_probe.c b/src/udev/mtd_probe/mtd_probe.c index 13c757bd1c..67b750c4b3 100644 --- a/src/udev/mtd_probe/mtd_probe.c +++ b/src/udev/mtd_probe/mtd_probe.c @@ -16,7 +16,7 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, * Boston, MA 02110-1301 USA */ -#include "mtd_probe.h" + #include <stdio.h> #include <sys/ioctl.h> #include <mtd/mtd-user.h> @@ -26,6 +26,8 @@ #include <unistd.h> #include <stdlib.h> +#include "mtd_probe.h" + int main(int argc, char** argv) { int mtd_fd; diff --git a/src/udev/mtd_probe/mtd_probe.h b/src/udev/mtd_probe/mtd_probe.h index d99be9addc..caea5c2693 100644 --- a/src/udev/mtd_probe/mtd_probe.h +++ b/src/udev/mtd_probe/mtd_probe.h @@ -21,6 +21,8 @@ #include <mtd/mtd-user.h> +#include "macro.h" + /* Full oob structure as written on the flash */ struct sm_oob { uint32_t reserved; @@ -30,8 +32,7 @@ struct sm_oob { uint8_t ecc2[3]; uint8_t lba_copy2[2]; uint8_t ecc1[3]; -} __attribute__((packed)); - +} _packed_; /* one sector is always 512 bytes, but it can consist of two nand pages */ #define SM_SECTOR_SIZE 512 @@ -47,5 +48,4 @@ struct sm_oob { #define SM_SMALL_PAGE 256 #define SM_SMALL_OOB_SIZE 8 - void probe_smart_media(int mtd_fd, mtd_info_t *info); |