Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1386776
| From | Colin King <colin.king@canonical.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] watchdog: trivial fix of spelling mistake on "allocate" |
| Date | 2016-04-25 21:30 +0200 |
| Message-ID | <rrUmK-2Ic-13@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
From: Colin Ian King <colin.king@canonical.com>
fix spelling mistake, alloacate -> allocate
Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
drivers/watchdog/jz4740_wdt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/watchdog/jz4740_wdt.c b/drivers/watchdog/jz4740_wdt.c
index 6a7d5c3..3f2ddc8 100644
--- a/drivers/watchdog/jz4740_wdt.c
+++ b/drivers/watchdog/jz4740_wdt.c
@@ -161,7 +161,7 @@ static int jz4740_wdt_probe(struct platform_device *pdev)
drvdata = devm_kzalloc(&pdev->dev, sizeof(struct jz4740_wdt_drvdata),
GFP_KERNEL);
if (!drvdata) {
- dev_err(&pdev->dev, "Unable to alloacate watchdog device\n");
+ dev_err(&pdev->dev, "Unable to allocate watchdog device\n");
return -ENOMEM;
}
--
2.7.4
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] watchdog: trivial fix of spelling mistake on "allocate" Colin King <colin.king@canonical.com> - 2016-04-25 21:30 +0200
Re: [PATCH] watchdog: trivial fix of spelling mistake on "allocate" Guenter Roeck <linux@roeck-us.net> - 2016-04-26 03:50 +0200
Re: [PATCH] watchdog: trivial fix of spelling mistake on "allocate" Joe Perches <joe@perches.com> - 2016-04-26 07:30 +0200
Re: [PATCH] watchdog: trivial fix of spelling mistake on "allocate" Guenter Roeck <linux@roeck-us.net> - 2016-04-26 19:00 +0200
Re: [PATCH] watchdog: trivial fix of spelling mistake on "allocate" Colin Ian King <colin.king@canonical.com> - 2016-04-26 19:20 +0200
csiph-web