Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753542AbbKLEf0 (ORCPT ); Wed, 11 Nov 2015 23:35:26 -0500 Received: from mailout1.w1.samsung.com ([210.118.77.11]:19535 "EHLO mailout1.w1.samsung.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753300AbbKLEfW (ORCPT ); Wed, 11 Nov 2015 23:35:22 -0500 X-AuditID: cbfec7f5-f794b6d000001495-52-56441706e24f Subject: Re: [PATCH v4 9/9] drivers: soc: Add support for Exynos PMU driver To: Pankaj Dubey , linux-samsung-soc@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org References: <1447155784-12667-1-git-send-email-pankaj.dubey@samsung.com> <1447155784-12667-10-git-send-email-pankaj.dubey@samsung.com> Cc: kgene.kim@samsung.com, thomas.ab@samsung.com, amitdanielk@gmail.com, olof@lixom.net, khilman@linaro.org, arnd@arndb.de From: Krzysztof Kozlowski Message-id: <56441706.5070206@samsung.com> Date: Thu, 12 Nov 2015 13:35:18 +0900 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-version: 1.0 In-reply-to: <1447155784-12667-10-git-send-email-pankaj.dubey@samsung.com> Content-type: text/plain; charset=windows-1252 Content-transfer-encoding: 7bit X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFvrOLMWRmVeSWpSXmKPExsVy+t/xa7ps4i5hBnMO2lh8XP2SzeLvpGPs Fq9fGFr0LrjKZvH18ApGi02Pr7FaXN41h81ixvl9TBanrn9ms1i09Qu7RccyRgduj9+/JjF6 7Jx1l93jzrU9bB6bl9R7XDnRxOrRt2UVo8fnTXIB7FFcNimpOZllqUX6dglcGRfWrWApmCtW saL3LFMD41GhLkZODgkBE4m2OfMYIWwxiQv31rN1MXJxCAksZZRYe62LCcL5wihx9sISNpAq YQFvib+TH7GCJEQEpjBKXOxZxghR1cEocW/6fFaQKmaBGonTn66AzWUTMJbYvByim1dAS2LK u2VgNSwCqhI7lu9hAbFFBSIkJk5oYIWoEZT4MfkeWJxTwEti0fZ5QGdwAM3Uk7h/UQtivLzE 5jVvmScwCsxC0jELoWoWkqoFjMyrGEVTS5MLipPSc430ihNzi0vz0vWS83M3MUKi4+sOxqXH rA4xCnAwKvHwTpjpHCbEmlhWXJl7iFGCg1lJhDdgHlCINyWxsiq1KD++qDQntfgQozQHi5I4 78xd70OEBNITS1KzU1MLUotgskwcnFINjP3f0x+8zGjd6DPhpKTy5qifsmZR88JY/6jutRQ4 qvCJu++uXofll1WzdH5s1/69qO97nN/qigumcTtUVrotll52y3rm5rpH3+U93TfKHBb9a7i3 kLm6pGiR6PdlPIyrQr6+rPcoNe040PxghdJTMcdCB5FbVSt2MZ145NZ5ndfcS+58TvJWRiWW 4oxEQy3mouJEAFYpfveKAgAA Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3037 Lines: 58 On 10.11.2015 20:43, Pankaj Dubey wrote: > This patch moves Exynos PMU driver implementation from "arm/mach-exynos" > to "drivers/soc/samsung". This driver is mainly used for setting misc > bits of register from PMU IP of Exynos SoC which will be required to > configure before Suspend/Resume. Currently all these settings are done > in "arch/arm/mach-exynos/pmu.c" but moving ahead for ARM64 based SoC > support, there is a need of this PMU driver in driver/* folder. > > This driver uses existing DT binding information and there should > be no functionality change in the supported platforms. > > Signed-off-by: Amit Daniel Kachhap > Signed-off-by: Pankaj Dubey > --- > arch/arm/mach-exynos/Kconfig | 1 + > arch/arm/mach-exynos/Makefile | 4 +- > arch/arm/mach-exynos/exynos-pmu.h | 45 ------ > arch/arm/mach-exynos/exynos3250-pmu.c | 175 --------------------- > arch/arm/mach-exynos/exynos4-pmu.c | 223 --------------------------- > arch/arm/mach-exynos/exynos5250-pmu.c | 196 ------------------------ > arch/arm/mach-exynos/exynos5420-pmu.c | 280 ---------------------------------- > arch/arm/mach-exynos/pmu.c | 183 ---------------------- > drivers/soc/samsung/Kconfig | 4 + > drivers/soc/samsung/Makefile | 4 + > drivers/soc/samsung/exynos-pmu.c | 183 ++++++++++++++++++++++ > drivers/soc/samsung/exynos-pmu.h | 45 ++++++ > drivers/soc/samsung/exynos3250-pmu.c | 175 +++++++++++++++++++++ > drivers/soc/samsung/exynos4-pmu.c | 223 +++++++++++++++++++++++++++ > drivers/soc/samsung/exynos5250-pmu.c | 196 ++++++++++++++++++++++++ > drivers/soc/samsung/exynos5420-pmu.c | 280 ++++++++++++++++++++++++++++++++++ > 16 files changed, 1112 insertions(+), 1105 deletions(-) > delete mode 100644 arch/arm/mach-exynos/exynos-pmu.h > delete mode 100644 arch/arm/mach-exynos/exynos3250-pmu.c > delete mode 100644 arch/arm/mach-exynos/exynos4-pmu.c > delete mode 100644 arch/arm/mach-exynos/exynos5250-pmu.c > delete mode 100644 arch/arm/mach-exynos/exynos5420-pmu.c > delete mode 100644 arch/arm/mach-exynos/pmu.c > create mode 100644 drivers/soc/samsung/exynos-pmu.c > create mode 100644 drivers/soc/samsung/exynos-pmu.h > create mode 100644 drivers/soc/samsung/exynos3250-pmu.c > create mode 100644 drivers/soc/samsung/exynos4-pmu.c > create mode 100644 drivers/soc/samsung/exynos5250-pmu.c > create mode 100644 drivers/soc/samsung/exynos5420-pmu.c Again - renames were not detected. This is strange... and actually unreadable. The previous patch looked much better. What happened? Please send also entire patchset to linux-pm mailing list. I asked about it last time and can't see it as recipient here. Best regards, Krzysztof -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/