From: Andy Shevchenko Date: Wed, 5 Jul 2017 17:44:06 +0000 (+0300) Subject: wdt: Fix spelling Resettting -> Resetting X-Git-Tag: v2017.07~21 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b71e0c1a300e8f2f69e6e19410cf031b7cac05bb;p=platform%2Fkernel%2Fu-boot.git wdt: Fix spelling Resettting -> Resetting Fix spelling Resettting -> Resetting. No functional change intended. Signed-off-by: Andy Shevchenko Reviewed-by: Simon Glass Reviewed-by: Bin Meng Reviewed-by: Heiko Schocher --- diff --git a/drivers/watchdog/wdt-uclass.c b/drivers/watchdog/wdt-uclass.c index ab8a64c..bb9ae80 100644 --- a/drivers/watchdog/wdt-uclass.c +++ b/drivers/watchdog/wdt-uclass.c @@ -48,7 +48,7 @@ int wdt_expire_now(struct udevice *dev, ulong flags) int ret = 0; const struct wdt_ops *ops; - debug("WDT Resettting: %lu\n", flags); + debug("WDT Resetting: %lu\n", flags); ops = device_get_ops(dev); if (ops->expire_now) { return ops->expire_now(dev, flags);