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>
This commit is contained in:
Stefan Weil 2010-09-22 20:56:35 +02:00 committed by Anthony Liguori
parent e1bb0a1a6c
commit 879f065557

View file

@ -31,6 +31,7 @@
#include "hw.h"
#include "block.h"
#include "block_int.h"
#include "sd.h"
//#define DEBUG_SD 1