From: Masanari Iida Date: Fri, 12 Sep 2014 16:14:30 +0000 (+0900) Subject: staging: exxx_udc: Convert pr_warning to pr_warn X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=f02935c575cb00f2a164282866324816a1f52fc1;p=linux-beck.git staging: exxx_udc: Convert pr_warning to pr_warn This patch Convert pr_warning to pr_warn. Signed-off-by: Masanari Iida Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/emxx_udc/emxx_udc.c b/drivers/staging/emxx_udc/emxx_udc.c index ef956dfadb25..ca443b4ef706 100644 --- a/drivers/staging/emxx_udc/emxx_udc.c +++ b/drivers/staging/emxx_udc/emxx_udc.c @@ -2165,7 +2165,7 @@ static inline void _nbu2ss_epn_int(struct nbu2ss_udc *udc, u32 epnum) req = list_entry(ep->queue.next, struct nbu2ss_req, queue); if (req == NULL) { - /* pr_warning("=== %s(%d) req == NULL\n", __func__, epnum); */ + /* pr_warn("=== %s(%d) req == NULL\n", __func__, epnum); */ return; } @@ -3099,7 +3099,7 @@ static int nbu2ss_gad_wakeup(struct usb_gadget *pgadget) data = gpio_get_value(VBUS_VALUE); if (data == 0) { - pr_warning("VBUS LEVEL = %d\n", data); + pr_warn("VBUS LEVEL = %d\n", data); return -EINVAL; } @@ -3185,7 +3185,7 @@ static int nbu2ss_gad_pullup(struct usb_gadget *pgadget, int is_on) udc = container_of(pgadget, struct nbu2ss_udc, gadget); if (udc->driver == NULL) { - pr_warning("%s, Not Regist Driver\n", __func__); + pr_warn("%s, Not Regist Driver\n", __func__); return -EINVAL; }