浏览代码

mtd: cfi_cmdset_0002: Fix argument order in bootloc warning

Doh. Pointed out by Guillaume LECERF <glecerf@gmail.com> since I managed
to miss it in my test builds. S'what I get for hacking at 2am, I suppose.

Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
David Woodhouse 15 年之前
父节点
当前提交
abab7ebf8c
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drivers/mtd/chips/cfi_cmdset_0002.c

+ 1 - 1
drivers/mtd/chips/cfi_cmdset_0002.c

@@ -442,7 +442,7 @@ struct mtd_info *cfi_cmdset_0002(struct map_info *map, int primary)
 			if ((bootloc < 2) || (bootloc > 5)) {
 				printk(KERN_WARNING "%s: CFI contains unrecognised boot "
 				       "bank location (%d). Assuming bottom.\n",
-				       bootloc, map->name);
+				       map->name, bootloc);
 				bootloc = 2;
 			}