瀏覽代碼

Correct SPL use of CMD_MBR

This converts 1 usage of this option to the non-SPL form, since there is
no SPL_CMD_MBR defined in Kconfig

Signed-off-by: Simon Glass <sjg@chromium.org>
Simon Glass 1 年之前
父節點
當前提交
d01bf20ea6
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      disk/part_dos.c

+ 1 - 1
disk/part_dos.c

@@ -318,7 +318,7 @@ int is_valid_dos_buf(void *buf)
 	return test_block_type(buf) == DOS_MBR ? 0 : -1;
 }
 
-#if CONFIG_IS_ENABLED(CMD_MBR)
+#if IS_ENABLED(CONFIG_CMD_MBR)
 static void lba_to_chs(lbaint_t lba, unsigned char *rc, unsigned char *rh,
 		       unsigned char *rs)
 {