diff options
author | Paul Brook <paul@codesourcery.com> | 2009-05-10 01:44:56 +0100 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2009-05-10 01:44:56 +0100 |
commit | bc24a225af2464dc30f88d6f930779cbf0e22b67 (patch) | |
tree | 6df682b479f89863159f836e1dc292623ab577e1 /hw/omap2.c | |
parent | d4ec5228821b8bdd8019cb5dafa2ea3659ddb1f9 (diff) |
Follow coding conventions
Remove explicit struct qualifiers and rename structure types.
Signed-off-by: Paul Brook <paul@codesourcery.com>
Diffstat (limited to 'hw/omap2.c')
-rw-r--r-- | hw/omap2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/omap2.c b/hw/omap2.c index 82efbda88a..1cbbf4977b 100644 --- a/hw/omap2.c +++ b/hw/omap2.c @@ -4068,7 +4068,7 @@ struct omap_gpmc_s { int ecc_cs; int ecc_ptr; uint32_t ecc_cfg; - struct ecc_state_s ecc[9]; + ECCState ecc[9]; }; static void omap_gpmc_int_update(struct omap_gpmc_s *s) |