diff options
author | Stefan Weil <weil@mail.berlios.de> | 2010-09-22 20:56:35 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2010-09-22 14:02:33 -0500 |
commit | 879f0655579a1f94fab2cd20a1597aef9a3117ef (patch) | |
tree | dcca30cf94fc92e3c5d1606f72816ce4f88cffce /hw/sd.c | |
parent | e1bb0a1a6c7c6d51443856ca90bd538b1ef5feeb (diff) |
Fix compilation error (missing include statement)
./hw/sd.c: In function ‘sd_init’:
./hw/sd.c:443: error: implicit declaration of function ‘qemu_blockalign’
./hw/sd.c:443: error: nested extern declaration of ‘qemu_blockalign’
./hw/sd.c:443: error: assignment makes pointer from integer without a cast
Cc: Christoph Hellwig <hch@lst.de>
Cc: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/sd.c')
-rw-r--r-- | hw/sd.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -31,6 +31,7 @@ #include "hw.h" #include "block.h" +#include "block_int.h" #include "sd.h" //#define DEBUG_SD 1 |