diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-04-06 16:54:11 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-04-06 16:54:11 +0000 |
commit | 42a10898a8247821d161e3ac799b758f79fbe3b3 (patch) | |
tree | d5f52def13f5b5a104c2682723c7d2704cf2d810 /hw/pl181.c | |
parent | a1bb27b1e98a372545f37a599c0f9ea785502554 (diff) |
Use correct type for card field.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2621 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/pl181.c')
-rw-r--r-- | hw/pl181.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/pl181.c b/hw/pl181.c index 7912c280b5..7c3b5de4c6 100644 --- a/hw/pl181.c +++ b/hw/pl181.c @@ -22,7 +22,7 @@ do { printf("pl181: " fmt , ##args); } while (0) #define PL181_FIFO_LEN 16 typedef struct { - struct sd_state_s *card; + SDState *card; uint32_t base; uint32_t clock; uint32_t power; |