diff options
Diffstat (limited to 'disk/part_mac.c')
-rw-r--r-- | disk/part_mac.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/disk/part_mac.c b/disk/part_mac.c index 8b2c004027..e01ae74566 100644 --- a/disk/part_mac.c +++ b/disk/part_mac.c @@ -14,9 +14,11 @@ #include <common.h> #include <command.h> +#include <log.h> #include <memalign.h> #include <ide.h> #include "part_mac.h" +#include <part.h> #ifdef CONFIG_HAVE_BLOCK_DEVICE @@ -214,7 +216,7 @@ static int part_mac_read_pdb(struct blk_desc *dev_desc, int part, } static int part_get_info_mac(struct blk_desc *dev_desc, int part, - disk_partition_t *info) + struct disk_partition *info) { ALLOC_CACHE_ALIGN_BUFFER(mac_driver_desc_t, ddesc, 1); ALLOC_CACHE_ALIGN_BUFFER(mac_partition_t, mpart, 1); |