From patchwork Sun Nov 4 15:30:42 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Axel Lin X-Patchwork-Id: 1694691 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork2.kernel.org (Postfix) with ESMTP id EA87BDF264 for ; Sun, 4 Nov 2012 15:33:30 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1TV2AB-0001bs-Rw; Sun, 04 Nov 2012 15:31:04 +0000 Received: from mail-pb0-f49.google.com ([209.85.160.49]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1TV2A6-0001XA-3l for linux-arm-kernel@lists.infradead.org; Sun, 04 Nov 2012 15:30:59 +0000 Received: by mail-pb0-f49.google.com with SMTP id xa7so3122156pbc.36 for ; Sun, 04 Nov 2012 07:30:55 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=message-id:subject:from:to:cc:date:content-type:x-mailer :content-transfer-encoding:mime-version:x-gm-message-state; bh=Vf8G0/F8p6A2ygDzly2pjplkBZ7jsD79F8eOd2Z8rUE=; b=hA8Be+Ek3v9IX1m19TA7qaLFSQKWtnu1xU5BipbubyOgjprwjPqC8mbq2qOM80aecf 4fXTslvgfsN/ILXeNS3lHd4GxoECR49qPyCD8VYH5A1Wn7eTtsreYetU177Ob9xjKgXW gVhIB/hYh+gcx9nVAsanrqv9hxEXAbHhinhxnK0gg4+Ru7wLsdOYY8xBA+pHHyz66L5W fEgQzAcbPdOKJ7mH6iOaeMihqzNwfss6ulbzPSaNxfVVPGLi5SkXHq1+hH/wvwrzYqGH 05HoFoNI7smESpNUPLluRC9pEN5f+yS/Q+AMmHfikRNH1g9m5n0JnRAMlkQ1nE8jArVC p4DA== Received: by 10.68.219.5 with SMTP id pk5mr23151452pbc.124.1352043055148; Sun, 04 Nov 2012 07:30:55 -0800 (PST) Received: from [192.168.0.100] (114-39-99-224.dynamic.hinet.net. [114.39.99.224]) by mx.google.com with ESMTPS id uh10sm4297463pbc.35.2012.11.04.07.30.52 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 04 Nov 2012 07:30:54 -0800 (PST) Message-ID: <1352043042.11324.0.camel@phoenix> Subject: [PATCH] pinctrl: nomadik: Add terminating entry for platform_device_id table From: Axel Lin To: Linus Walleij Date: Sun, 04 Nov 2012 23:30:42 +0800 X-Mailer: Evolution 3.2.3-0ubuntu6 Mime-Version: 1.0 X-Gm-Message-State: ALoCoQlXXq/MYJ5QEta4TWAGBnpbwGKA4hACgSZ+k9eihuqc0bdwKPGOnfh2J36adhBG0vhMJeCi X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20121104_103058_369706_C5FD5DA3 X-CRM114-Status: GOOD ( 11.45 ) X-Spam-Score: -2.6 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.6 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [209.85.160.49 listed in list.dnswl.org] -0.0 SPF_PASS SPF: sender matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Srinidhi Kasagar X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 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 The platform_device_id table is supposed to be zero-terminated. Signed-off-by: Axel Lin --- drivers/pinctrl/pinctrl-nomadik.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/pinctrl/pinctrl-nomadik.c b/drivers/pinctrl/pinctrl-nomadik.c index f2fd99b..22f6937 100644 --- a/drivers/pinctrl/pinctrl-nomadik.c +++ b/drivers/pinctrl/pinctrl-nomadik.c @@ -1922,6 +1922,7 @@ static const struct platform_device_id nmk_pinctrl_id[] = { { "pinctrl-stn8815", PINCTRL_NMK_STN8815 }, { "pinctrl-db8500", PINCTRL_NMK_DB8500 }, { "pinctrl-db8540", PINCTRL_NMK_DB8540 }, + { } }; static struct platform_driver nmk_pinctrl_driver = {