From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751103AbdHaGBP (ORCPT ); Thu, 31 Aug 2017 02:01:15 -0400 Received: from mail-pf0-f195.google.com ([209.85.192.195]:33986 "EHLO mail-pf0-f195.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750867AbdHaGBN (ORCPT ); Thu, 31 Aug 2017 02:01:13 -0400 From: Arvind Yadav To: edubezval@gmail.com, rui.zhang@intel.com, hch@lst.de Cc: linux-kernel@vger.kernel.org, linux-pm@vger.kernel.org Subject: [PATCH] thermal : Remove const to make same prototype Date: Thu, 31 Aug 2017 11:30:45 +0530 Message-Id: <29cf6375f8b1c667de1387e4e865aaa288a125ac.1504159021.git.arvind.yadav.cs@gmail.com> X-Mailer: git-send-email 1.9.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Here, prototype of thermal_zone_device_register is not matching with static inline thermal_zone_device_register. One is using const thermal_zone_params. Other is using non-const. Signed-off-by: Arvind Yadav --- include/linux/thermal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/thermal.h b/include/linux/thermal.h index dab11f9..8ba77ff 100644 --- a/include/linux/thermal.h +++ b/include/linux/thermal.h @@ -487,7 +487,7 @@ static inline int power_actor_set_power(struct thermal_cooling_device *cdev, static inline struct thermal_zone_device *thermal_zone_device_register( const char *type, int trips, int mask, void *devdata, struct thermal_zone_device_ops *ops, - const struct thermal_zone_params *tzp, + struct thermal_zone_params *tzp, int passive_delay, int polling_delay) { return ERR_PTR(-ENODEV); } static inline void thermal_zone_device_unregister( -- 1.9.1