瀏覽代碼

[ARM] Fix ecard.c resource warnings.

Platforms which use ecard.c always have 32-bit resources, so
might as well lose the "long" format strings.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Russell King 19 年之前
父節點
當前提交
c9e4143c4d
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      arch/arm/kernel/ecard.c

+ 1 - 1
arch/arm/kernel/ecard.c

@@ -883,7 +883,7 @@ static ssize_t ecard_show_resources(struct device *dev, struct device_attribute
 	int i;
 
 	for (i = 0; i < ECARD_NUM_RESOURCES; i++)
-		str += sprintf(str, "%08lx %08lx %08lx\n",
+		str += sprintf(str, "%08x %08x %08lx\n",
 				ec->resource[i].start,
 				ec->resource[i].end,
 				ec->resource[i].flags);