Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755072AbbHFJz0 (ORCPT ); Thu, 6 Aug 2015 05:55:26 -0400 Received: from mail-pa0-f51.google.com ([209.85.220.51]:36592 "EHLO mail-pa0-f51.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753537AbbHFJzY (ORCPT ); Thu, 6 Aug 2015 05:55:24 -0400 From: Shraddha Barke To: Marek Belisko , Greg Kroah-Hartman , Jarod Wilson , Mauro Carvalho Chehab , Joe Perches , Peter Karlsson , Tapasweni Pathak , Aya Mahfouz , Tina Johnson , linux-media@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Shraddha Barke Subject: [PATCH v3 2/2] Staging: media: lirc: use USB API functions rather than constants Date: Thu, 6 Aug 2015 15:24:22 +0530 Message-Id: <1438854862-10213-2-git-send-email-shraddha.6596@gmail.com> X-Mailer: git-send-email 2.1.0 In-Reply-To: <1438854862-10213-1-git-send-email-shraddha.6596@gmail.com> References: <1438854862-10213-1-git-send-email-shraddha.6596@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1243 Lines: 38 This patch introduces the use of the function usb_endpoint_type. The Coccinelle semantic patch that makes these changes is as follows: @@ struct usb_endpoint_descriptor *epd; @@ - (epd->bmAttributes & \(USB_ENDPOINT_XFERTYPE_MASK\|3\)) + usb_endpoint_type(epd) Signed-off-by: Shraddha Barke --- Changes in v3: -No changes. drivers/staging/media/lirc/lirc_imon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/media/lirc/lirc_imon.c b/drivers/staging/media/lirc/lirc_imon.c index 62ec9f7..cbeec83 100644 --- a/drivers/staging/media/lirc/lirc_imon.c +++ b/drivers/staging/media/lirc/lirc_imon.c @@ -739,7 +739,7 @@ static int imon_probe(struct usb_interface *interface, ep = &iface_desc->endpoint[i].desc; ep_dir = ep->bEndpointAddress & USB_ENDPOINT_DIR_MASK; - ep_type = ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK; + ep_type = usb_endpoint_type(ep); if (!ir_ep_found && ep_dir == USB_DIR_IN && -- 2.1.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/