Browse Source

[POWERPC] fsl_soc: Fix trivial printk typo.

Fix a trivial printk typo in fsl_soc.

Cc: G. Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Peter Korsgaard 17 năm trước cách đây
mục cha
commit
210805e219
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      arch/powerpc/sysdev/fsl_soc.c

+ 1 - 1
arch/powerpc/sysdev/fsl_soc.c

@@ -363,7 +363,7 @@ static void __init of_register_i2c_devices(struct device_node *adap_node,
 
 
 		addr = of_get_property(node, "reg", &len);
 		addr = of_get_property(node, "reg", &len);
 		if (!addr || len < sizeof(int) || *addr > (1 << 10) - 1) {
 		if (!addr || len < sizeof(int) || *addr > (1 << 10) - 1) {
-			printk(KERN_WARNING "fsl_ioc.c: invalid i2c device entry\n");
+			printk(KERN_WARNING "fsl_soc.c: invalid i2c device entry\n");
 			continue;
 			continue;
 		}
 		}