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/ssi-sd.c | |
parent | d4ec5228821b8bdd8019cb5dafa2ea3659ddb1f9 (diff) | |
download | qemu-bc24a225af2464dc30f88d6f930779cbf0e22b67.tar.gz qemu-bc24a225af2464dc30f88d6f930779cbf0e22b67.tar.bz2 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/ssi-sd.c')
-rw-r--r-- | hw/ssi-sd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ssi-sd.c b/hw/ssi-sd.c index ffb9c4cda7..93d2374958 100644 --- a/hw/ssi-sd.c +++ b/hw/ssi-sd.c @@ -82,7 +82,7 @@ int ssi_sd_xfer(void *opaque, int val) return 0xff; case SSI_SD_CMDARG: if (s->arglen == 4) { - struct sd_request_s request; + SDRequest request; uint8_t longresp[16]; /* FIXME: Check CRC. */ request.cmd = s->cmd; |