From patchwork Fri May 1 15:44:36 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Krzysztof Kozlowski X-Patchwork-Id: 6310471 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 37581BEEE1 for ; Fri, 1 May 2015 15:49:38 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 68A8E2039D for ; Fri, 1 May 2015 15:49:37 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.9]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 7690120397 for ; Fri, 1 May 2015 15:49:36 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1YoD9S-0005Nj-J8; Fri, 01 May 2015 15:46:54 +0000 Received: from mail-pd0-x235.google.com ([2607:f8b0:400e:c02::235]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1YoD8J-0004UH-Ud for linux-arm-kernel@lists.infradead.org; Fri, 01 May 2015 15:45:44 +0000 Received: by pdbqd1 with SMTP id qd1so95462899pdb.2 for ; Fri, 01 May 2015 08:45:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=5Y9Fbmwl0aj1Db74qJHh7TQWzBJcJViff7o1vvsKKAc=; b=hX5D8gniKi9CcjKjk+e0tObzYlM5XPNh0QHlpxtdZ6nWAdoN00LgQlXq//ID3odqny ecpluAo2e2nqF/SS34/XS2kTnCor8nWsFyUHKDm5Z77EfzrSLjQzh9ej6WlVbBZ6s/9P znMfG0YG1Iyov4U7JHHhu5aK8aapmxv1l/PPiz2febblvSUNRJWkGD74wJDtIlrdqPS+ tiJizjTDRERUrbiQoFHJYtK3TPnLX9SRMK4EwD0wvW3cV3Q30IMBHMyzO6AY1vGsF8WS PuCsm7c9bNPoyGfcEoFVPhTtgkea1GbNxwGJ4SAFKAIKUSzP5pIlhBm/D2/S2vHEeGPa ldsA== X-Received: by 10.67.1.98 with SMTP id bf2mr19112484pad.33.1430495123253; Fri, 01 May 2015 08:45:23 -0700 (PDT) Received: from localhost.localdomain ([125.130.175.98]) by mx.google.com with ESMTPSA id y2sm5191596pbt.46.2015.05.01.08.45.20 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 01 May 2015 08:45:22 -0700 (PDT) From: Krzysztof Kozlowski To: Linus Walleij , Alessandro Zummo , Alexandre Belloni , linux-arm-kernel@lists.infradead.org, rtc-linux@googlegroups.com, linux-kernel@vger.kernel.org Subject: [PATCH 2/3] rtc: hid-sensor-time: Constify platform_device_id Date: Sat, 2 May 2015 00:44:36 +0900 Message-Id: <1430495077-31179-2-git-send-email-k.kozlowski.k@gmail.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1430495077-31179-1-git-send-email-k.kozlowski.k@gmail.com> References: <1430495077-31179-1-git-send-email-k.kozlowski.k@gmail.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20150501_084544_062119_4C888C93 X-CRM114-Status: GOOD ( 11.23 ) X-Spam-Score: -0.8 (/) Cc: Krzysztof Kozlowski X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Spam-Status: No, score=-4.1 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_MED, T_DKIM_INVALID, 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 The platform_device_id is not modified by the driver and core uses it as const. Signed-off-by: Krzysztof Kozlowski --- drivers/rtc/rtc-hid-sensor-time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/rtc/rtc-hid-sensor-time.c b/drivers/rtc/rtc-hid-sensor-time.c index af4f85a66b39..c398f74234c6 100644 --- a/drivers/rtc/rtc-hid-sensor-time.c +++ b/drivers/rtc/rtc-hid-sensor-time.c @@ -318,7 +318,7 @@ static int hid_time_remove(struct platform_device *pdev) return 0; } -static struct platform_device_id hid_time_ids[] = { +static const struct platform_device_id hid_time_ids[] = { { /* Format: HID-SENSOR-usage_id_in_hex_lowercase */ .name = "HID-SENSOR-2000a0",