diff options
| author | David S. Miller <davem@davemloft.net> | 2011-04-11 13:44:25 -0700 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2011-04-11 13:44:25 -0700 | 
| commit | 1c01a80cfec6f806246f31ff2680cd3639b30e67 (patch) | |
| tree | 0b554aad2ec1da71ecf6339d4ba51617bfe1dc3c /arch/arm/mach-omap2/devices.c | |
| parent | c44d79950b2daa1025e62eede73e4e4a274d1ef3 (diff) | |
| parent | 4a9f65f6304a00f6473e83b19c1e83caa1e42530 (diff) | |
Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
Conflicts:
	drivers/net/smsc911x.c
Diffstat (limited to 'arch/arm/mach-omap2/devices.c')
| -rw-r--r-- | arch/arm/mach-omap2/devices.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/arch/arm/mach-omap2/devices.c b/arch/arm/mach-omap2/devices.c index 84d1b735fe80..7b8558564591 100644 --- a/arch/arm/mach-omap2/devices.c +++ b/arch/arm/mach-omap2/devices.c @@ -253,7 +253,7 @@ int __init omap4_keyboard_init(struct omap4_keypad_platform_data  			ARRAY_SIZE(omap_keyboard_latency), 0);  	if (IS_ERR(od)) { -		WARN(1, "Cant build omap_device for %s:%s.\n", +		WARN(1, "Can't build omap_device for %s:%s.\n",  						name, oh->name);  		return PTR_ERR(od);  	} @@ -373,7 +373,7 @@ static int omap_mcspi_init(struct omap_hwmod *oh, void *unused)  	od = omap_device_build(name, spi_num, oh, pdata,  				sizeof(*pdata),	omap_mcspi_latency,  				ARRAY_SIZE(omap_mcspi_latency), 0); -	WARN(IS_ERR(od), "Cant build omap_device for %s:%s\n", +	WARN(IS_ERR(od), "Can't build omap_device for %s:%s\n",  				name, oh->name);  	kfree(pdata);  	return 0; @@ -725,7 +725,7 @@ static int __init omap_init_wdt(void)  	od = omap_device_build(dev_name, id, oh, NULL, 0,  				omap_wdt_latency,  				ARRAY_SIZE(omap_wdt_latency), 0); -	WARN(IS_ERR(od), "Cant build omap_device for %s:%s.\n", +	WARN(IS_ERR(od), "Can't build omap_device for %s:%s.\n",  				dev_name, oh->name);  	return 0;  } | 
