]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
usb: gadget: configfs: fix typo
authorPeter Chen <peter.chen@freescale.com>
Sun, 4 May 2014 23:39:34 +0000 (07:39 +0800)
committerNitin Garg <nitin.garg@freescale.com>
Fri, 16 Jan 2015 03:18:10 +0000 (21:18 -0600)
%s/atleast/at least

Signed-off-by: Peter Chen <peter.chen@freescale.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/gadget/configfs.c

index 7d1cc01796b60f7fc904fd6ac6a0da46b69de4d3..c823d59c267a6929dc815ab0a0f3dc9e5e9a7376 100644 (file)
@@ -793,7 +793,7 @@ static int configfs_composite_bind(struct usb_gadget *gadget,
        ret = -EINVAL;
 
        if (list_empty(&gi->cdev.configs)) {
-               pr_err("Need atleast one configuration in %s.\n",
+               pr_err("Need at least one configuration in %s.\n",
                                gi->composite.name);
                goto err_comp_cleanup;
        }
@@ -804,7 +804,7 @@ static int configfs_composite_bind(struct usb_gadget *gadget,
 
                cfg = container_of(c, struct config_usb_cfg, c);
                if (list_empty(&cfg->func_list)) {
-                       pr_err("Config %s/%d of %s needs atleast one function.\n",
+                       pr_err("Config %s/%d of %s needs at least one function.\n",
                              c->label, c->bConfigurationValue,
                              gi->composite.name);
                        goto err_comp_cleanup;