From patchwork Tue Jul 12 11:05:29 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: axel lin X-Patchwork-Id: 968092 Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by demeter1.kernel.org (8.14.4/8.14.4) with ESMTP id p6CB5pM4029565 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 12 Jul 2011 11:06:12 GMT Received: from canuck.infradead.org ([2001:4978:20e::1]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1Qgamf-0000x5-3Y; Tue, 12 Jul 2011 11:05:45 +0000 Received: from localhost ([127.0.0.1] helo=canuck.infradead.org) by canuck.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1Qgame-0004Pd-NK; Tue, 12 Jul 2011 11:05:44 +0000 Received: from mail-gy0-f177.google.com ([209.85.160.177]) by canuck.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1Qgama-0004PJ-3o for linux-arm-kernel@lists.infradead.org; Tue, 12 Jul 2011 11:05:41 +0000 Received: by gyh4 with SMTP id 4so2173510gyh.36 for ; Tue, 12 Jul 2011 04:05:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=subject:from:to:cc:content-type:date:message-id:mime-version :x-mailer:content-transfer-encoding; bh=FleNbH0Ug5pnMksOzijrvTlyd0IZZNw9DpHECCF2uCQ=; b=kpA+LX/+e28I1cGoZHv1qWladFgyfjHaIF0iDdRQKC77dKuGQ+BBpIDKL3c5s0WMw/ h32aIuXTtpE1zlWmXBnWG7rf3l+J8FYxRPT0nWZDAi64zysSbkyD2Purh8yqDXmCb9i1 ZEHhvPUJriYKI+t8E/Sxn+NGiZ8oUfXrzuCm8= Received: by 10.101.128.20 with SMTP id f20mr4717886ann.162.1310468735073; Tue, 12 Jul 2011 04:05:35 -0700 (PDT) Received: from [218.172.238.151] (218-172-238-151.dynamic.hinet.net [218.172.238.151]) by mx.google.com with ESMTPS id i14sm13273739ann.8.2011.07.12.04.05.31 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 12 Jul 2011 04:05:34 -0700 (PDT) Subject: [PATCH] USB: s3c2410_udc: fix unterminated platform_device_id table From: Axel Lin To: linux-kernel@vger.kernel.org Date: Tue, 12 Jul 2011 19:05:29 +0800 Message-ID: <1310468729.6590.3.camel@phoenix> Mime-Version: 1.0 X-Mailer: Evolution 2.32.2 X-CRM114-Version: 20090807-BlameThorstenAndJenny ( TRE 0.7.6 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20110712_070541_215352_346A8B50 X-CRM114-Status: GOOD ( 13.68 ) X-Spam-Score: -0.8 (/) X-Spam-Report: SpamAssassin version 3.3.1 on canuck.infradead.org summary: Content analysis details: (-0.8 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [209.85.160.177 listed in list.dnswl.org] 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (axel.lin[at]gmail.com) -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature 0.0 T_TO_NO_BRKTS_FREEMAIL To: misformatted and free email service Cc: Kukjin Kim , Greg Kroah-Hartman , Felipe Balbi , Herbert =?ISO-8859-1?Q?P=F6tzl?= , linux-usb@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Ben Dooks , Arnaud Patard X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Tue, 12 Jul 2011 11:06:12 +0000 (UTC) Signed-off-by: Axel Lin Acked-by: Sebastian Andrzej Siewior --- drivers/usb/gadget/s3c2410_udc.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/usb/gadget/s3c2410_udc.c b/drivers/usb/gadget/s3c2410_udc.c index 85c1b0d..8d31848 100644 --- a/drivers/usb/gadget/s3c2410_udc.c +++ b/drivers/usb/gadget/s3c2410_udc.c @@ -2060,6 +2060,7 @@ static int s3c2410_udc_resume(struct platform_device *pdev) static const struct platform_device_id s3c_udc_ids[] = { { "s3c2410-usbgadget", }, { "s3c2440-usbgadget", }, + { } }; MODULE_DEVICE_TABLE(platform, s3c_udc_ids);