From patchwork Mon Apr 28 09:25:30 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vivek Gautam X-Patchwork-Id: 4075921 Return-Path: X-Original-To: patchwork-linux-samsung-soc@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 1A80BBFF02 for ; Mon, 28 Apr 2014 09:26:06 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 34C12202B4 for ; Mon, 28 Apr 2014 09:26:05 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id EF92620251 for ; Mon, 28 Apr 2014 09:26:03 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754797AbaD1J0A (ORCPT ); Mon, 28 Apr 2014 05:26:00 -0400 Received: from mail-pd0-f182.google.com ([209.85.192.182]:37766 "EHLO mail-pd0-f182.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754251AbaD1JZz (ORCPT ); Mon, 28 Apr 2014 05:25:55 -0400 Received: by mail-pd0-f182.google.com with SMTP id v10so1226384pde.41 for ; Mon, 28 Apr 2014 02:25:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references; bh=HZovE+Zhp7HG+J1BOyVQjeGm5B2Jw48M8Y88uwBsUv8=; b=J2e6W/0Gx3i/rTP8lLBqtQxJsu2hRGmzDv10TwOSEjxHypXABQmq7BwOcEMvhNVD4I UjIjY4mBMk0usvWNLGury4hnB3iY/S3bKGz2BqcDY2Xz70eVgbv6N4PP2pDzQ/GuKR1l uLLu0WXYKLjLaxJZDtYtgVAM/lWLNN/dMhC6U13T/0OT+a+mEvEnEdn9an6/9ZBY/CUx 7hgR+zjIA8UPxoX48K80+PrguCIDtlnAwxzM253VJIG4ogpqgoYX1M2DsR/6cNKDHfxt RQt8wkuBEIIS27Tyc7PxL2omYGsDhTvlUCX8+rXVkEP2DDvNLWT8qL11t/FqQiyBMGqA Wd0w== X-Received: by 10.69.17.230 with SMTP id gh6mr27952455pbd.0.1398677155013; Mon, 28 Apr 2014 02:25:55 -0700 (PDT) Received: from vivek-linuxpc.sisodomain.com ([115.113.119.130]) by mx.google.com with ESMTPSA id xz7sm88411846pac.3.2014.04.28.02.25.50 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 28 Apr 2014 02:25:54 -0700 (PDT) From: Vivek Gautam To: linux-usb@vger.kernel.org, linux-samsung-soc@vger.kernel.org Cc: linux-kernel@vger.kernel.org, linux-doc@vger.kernel.org, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, gregkh@linuxfoundation.org, balbi@ti.com, kgene.kim@samsung.com, k.debski@samsung.com, Vivek Gautam , Jingoo Han , Alan Stern Subject: [PATCH 2/4] usb: ehci-exynos: Use struct device instead of platform_device Date: Mon, 28 Apr 2014 14:55:30 +0530 Message-Id: <1398677132-30600-3-git-send-email-gautam.vivek@samsung.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1398677132-30600-1-git-send-email-gautam.vivek@samsung.com> References: <1398677132-30600-1-git-send-email-gautam.vivek@samsung.com> Sender: linux-samsung-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-samsung-soc@vger.kernel.org X-Spam-Status: No, score=-7.4 required=5.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD,T_DKIM_INVALID,UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Change to use struct device instead of struct platform_device for some static functions. Signed-off-by: Vivek Gautam Cc: Jingoo Han Cc: Alan Stern Acked-by: Jingoo Han --- drivers/usb/host/ehci-exynos.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/usb/host/ehci-exynos.c b/drivers/usb/host/ehci-exynos.c index 7f425ac..4d763dc 100644 --- a/drivers/usb/host/ehci-exynos.c +++ b/drivers/usb/host/ehci-exynos.c @@ -50,9 +50,8 @@ struct exynos_ehci_hcd { #define to_exynos_ehci(hcd) (struct exynos_ehci_hcd *)(hcd_to_ehci(hcd)->priv) -static void exynos_setup_vbus_gpio(struct platform_device *pdev) +static void exynos_setup_vbus_gpio(struct device *dev) { - struct device *dev = &pdev->dev; int err; int gpio; @@ -88,7 +87,7 @@ static int exynos_ehci_probe(struct platform_device *pdev) if (err) return err; - exynos_setup_vbus_gpio(pdev); + exynos_setup_vbus_gpio(&pdev->dev); hcd = usb_create_hcd(&exynos_ehci_hc_driver, &pdev->dev, dev_name(&pdev->dev));