Browse Source

usb: gadget: configfs: log function unbinding as information

Disabling USB gadget functions configured through configfs is something
that can happen in normal use cases. Keep the existing log for this type
of event, but only as information, not as an error.

Signed-off-by: Romain Izard <romain.izard.pro@gmail.com>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
Romain Izard 9 years ago
parent
commit
a08f5dbf87
1 changed files with 3 additions and 2 deletions
  1. 3 2
      drivers/usb/gadget/configfs.c

+ 3 - 2
drivers/usb/gadget/configfs.c

@@ -1211,8 +1211,9 @@ static void purge_configs_funcs(struct gadget_info *gi)
 
 
 			list_move_tail(&f->list, &cfg->func_list);
 			list_move_tail(&f->list, &cfg->func_list);
 			if (f->unbind) {
 			if (f->unbind) {
-				dev_err(&gi->cdev.gadget->dev, "unbind function"
-						" '%s'/%p\n", f->name, f);
+				dev_info(&gi->cdev.gadget->dev,
+				         "unbind function '%s'/%p\n",
+				         f->name, f);
 				f->unbind(c, f);
 				f->unbind(c, f);
 			}
 			}
 		}
 		}