From patchwork Thu Jul 3 06:57:34 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sjoerd Simons X-Patchwork-Id: 4469561 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 E58EABEEAA for ; Thu, 3 Jul 2014 06:57:54 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 1D76720394 for ; Thu, 3 Jul 2014 06:57:54 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id A8BCC20222 for ; Thu, 3 Jul 2014 06:57:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752960AbaGCG5w (ORCPT ); Thu, 3 Jul 2014 02:57:52 -0400 Received: from cube.luon.net ([37.72.100.20]:38565 "EHLO cube.luon.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751135AbaGCG5v (ORCPT ); Thu, 3 Jul 2014 02:57:51 -0400 Received: from localhost (localhost [127.0.0.1]) by cube.luon.net (Postfix) with ESMTP id A4FD2E2618; Thu, 3 Jul 2014 08:57:49 +0200 (CEST) Received: from cube.luon.net ([127.0.0.1]) by localhost (cube.luon.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id X0JEs7v3roGI; Thu, 3 Jul 2014 08:57:49 +0200 (CEST) Received: from dusk.luon.net (g111211.upc-g.chello.nl [80.57.111.211]) by cube.luon.net (Postfix) with ESMTPSA id 6A0DCE2615; Thu, 3 Jul 2014 08:57:49 +0200 (CEST) Received: by dusk.luon.net (Postfix, from userid 1000) id EB227224EF; Thu, 3 Jul 2014 08:57:46 +0200 (CEST) From: Sjoerd Simons To: linux-samsung-soc@vger.kernel.org Cc: Kishon Vijay Abraham I , Kamil Debski , Sjoerd Simons Subject: [PATCH] drivers: phy: phy-samsung-usb2.c: Add missing MODULE_DEVICE_TABLE Date: Thu, 3 Jul 2014 08:57:34 +0200 Message-Id: <1404370654-14033-1-git-send-email-sjoerd.simons@collabora.co.uk> X-Mailer: git-send-email 2.0.0 In-Reply-To: <1404287322-25730-1-git-send-email-sjoerd.simons@collabora.co.uk> References: <1404287322-25730-1-git-send-email-sjoerd.simons@collabora.co.uk> 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=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, T_RP_MATCHES_RCVD, 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 Allow phy-exynos-usb2 to be autoloaded based on devicetree information. Tested on Odroid X2 with its USB subsystem build as modules. Signed-off-by: Sjoerd Simons --- drivers/phy/phy-samsung-usb2.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/phy/phy-samsung-usb2.c b/drivers/phy/phy-samsung-usb2.c index 8a8c6bc..1e69a32 100644 --- a/drivers/phy/phy-samsung-usb2.c +++ b/drivers/phy/phy-samsung-usb2.c @@ -107,6 +107,7 @@ static const struct of_device_id samsung_usb2_phy_of_match[] = { #endif { }, }; +MODULE_DEVICE_TABLE(of, samsung_usb2_phy_of_match); static int samsung_usb2_phy_probe(struct platform_device *pdev) {