[PATCH 2/2] common/partitions.c: make use of is_fat_or_mbr

Franck Jullien franck.jullien at gmail.com
Thu Oct 11 16:44:43 EDT 2012


2012/10/11 Franck Jullien <franck.jullien at gmail.com>:
> Signed-off-by: Franck Jullien <franck.jullien at gmail.com>
> ---
>  common/partitions.c |    3 ++-
>  1 files changed, 2 insertions(+), 1 deletions(-)
>
> diff --git a/common/partitions.c b/common/partitions.c
> index 0e42937..85bca32 100644
> --- a/common/partitions.c
> +++ b/common/partitions.c
> @@ -28,6 +28,7 @@
>  #include <asm/unaligned.h>
>  #include <disks.h>
>  #include <dma.h>
> +#include <filetype.h>
>
>  struct partition {
>         uint64_t first_sec;
> @@ -85,7 +86,7 @@ static void __maybe_unused try_dos_partition(struct block_device *blk,
>                 goto on_error;
>         }
>
> -       if ((buffer[510] != 0x55) || (buffer[511] != 0xAA)) {
> +       if(is_fat_or_mbr(buffer, NULL) != filetype_mbr) {

Please put a space after "if" :) I resend....

>                 dev_info(blk->dev, "No partition table found\n");
>                 goto on_error;
>         }
> --
> 1.7.1
>



More information about the barebox mailing list