diff options
author | Paul Brook | 2009-05-10 02:44:56 +0200 |
---|---|---|
committer | Paul Brook | 2009-05-10 02:44:56 +0200 |
commit | bc24a225af2464dc30f88d6f930779cbf0e22b67 (patch) | |
tree | 6df682b479f89863159f836e1dc292623ab577e1 /hw/omap_mmc.c | |
parent | Workaround compiler warnings at -O1 (diff) | |
download | qemu-bc24a225af2464dc30f88d6f930779cbf0e22b67.tar.gz qemu-bc24a225af2464dc30f88d6f930779cbf0e22b67.tar.xz qemu-bc24a225af2464dc30f88d6f930779cbf0e22b67.zip |
Follow coding conventions
Remove explicit struct qualifiers and rename structure types.
Signed-off-by: Paul Brook <paul@codesourcery.com>
Diffstat (limited to 'hw/omap_mmc.c')
-rw-r--r-- | hw/omap_mmc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/omap_mmc.c b/hw/omap_mmc.c index fd557c4c41..81c003cd2b 100644 --- a/hw/omap_mmc.c +++ b/hw/omap_mmc.c @@ -112,7 +112,7 @@ static void omap_mmc_command(struct omap_mmc_s *host, int cmd, int dir, { uint32_t rspstatus, mask; int rsplen, timeout; - struct sd_request_s request; + SDRequest request; uint8_t response[16]; if (init && cmd == 0) { |