Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1268716
| From | Pankaj Dubey <pankaj.dubey@samsung.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | RE: [PATCH v4 3/9] ARM: EXYNOS: Move pmu specific headers under "linux/soc/samsung" |
| Date | 2015-11-13 10:30 +0100 |
| Message-ID | <quiQa-4yT-3@gated-at.bofh.it> (permalink) |
| References | <qtfAZ-4wQ-3@gated-at.bofh.it> <qtfB0-4wQ-25@gated-at.bofh.it> <qtRmV-3Xl-5@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Hi Krzysztof, > -----Original Message----- > From: Krzysztof Kozlowski [mailto:k.kozlowski@samsung.com] > Sent: Thursday, November 12, 2015 9:40 AM > To: Pankaj Dubey; linux-samsung-soc@vger.kernel.org; linux- > kernel@vger.kernel.org; linux-arm-kernel@lists.infradead.org > Cc: kgene.kim@samsung.com; thomas.ab@samsung.com; amitdanielk@gmail.com; > olof@lixom.net; khilman@linaro.org; arnd@arndb.de > Subject: Re: [PATCH v4 3/9] ARM: EXYNOS: Move pmu specific headers under > "linux/soc/samsung" > > On 10.11.2015 20:42, Pankaj Dubey wrote: > > Moving Exynos PMU specific header file into "include/linux/soc/samsung" > > thus updated affected files under "mach-exynos" to use new location of > > these header files. > > > > Signed-off-by: Amit Daniel Kachhap <amitdanielk@gmail.com> > > Signed-off-by: Pankaj Dubey <pankaj.dubey@samsung.com> > > --- > > arch/arm/mach-exynos/exynos-pmu.h | 24 - > > arch/arm/mach-exynos/exynos.c | 2 +- > > arch/arm/mach-exynos/mcpm-exynos.c | 2 +- > > arch/arm/mach-exynos/platsmp.c | 2 +- > > arch/arm/mach-exynos/pm.c | 4 +- > > arch/arm/mach-exynos/pmu.c | 6 +- > > arch/arm/mach-exynos/regs-pmu.h | 693 ---------------------------- > > arch/arm/mach-exynos/suspend.c | 4 +- > > include/linux/soc/samsung/exynos-pmu.h | 24 + > > include/linux/soc/samsung/exynos-regs-pmu.h | 693 > > ++++++++++++++++++++++++++++ > > Did you disable the rename-detection for format-patch? Default rename detection > mechanism (50% of similarity) should detect two renames here: > exynos-pmu.h and exynos-regs-pmu.h > Yes. I missed to enable rename detection while creating patches. Soon will resubmit patches with addressing your comments to all the patches reviewed. Thanks, Pankaj Dubey > Best regards, > Krzysztof > > > > 10 files changed, 727 insertions(+), 727 deletions(-) delete mode > > 100644 arch/arm/mach-exynos/exynos-pmu.h delete mode 100644 > > arch/arm/mach-exynos/regs-pmu.h create mode 100644 > > include/linux/soc/samsung/exynos-pmu.h > > create mode 100644 include/linux/soc/samsung/exynos-regs-pmu.h -- 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/
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH v4 0/9] samsung: pmu: split up SoC specific PMU data Pankaj Dubey <pankaj.dubey@samsung.com> - 2015-11-10 12:50 +0100
[PATCH v4 2/9] ARM: EXYNOS: Fix potential NULL pointer access in exynos_sys_powerdown_conf Pankaj Dubey <pankaj.dubey@samsung.com> - 2015-11-10 12:50 +0100
Re: [PATCH v4 2/9] ARM: EXYNOS: Fix potential NULL pointer access in exynos_sys_powerdown_conf Krzysztof Kozlowski <k.kozlowski@samsung.com> - 2015-11-12 05:10 +0100
[PATCH v4 1/9] ARM: EXYNOS: removing redundant code from regs-pmu.h Pankaj Dubey <pankaj.dubey@samsung.com> - 2015-11-10 12:50 +0100
[PATCH v4 5/9] ARM: EXYNOS: split up exynos4 SoC specific PMU data Pankaj Dubey <pankaj.dubey@samsung.com> - 2015-11-10 13:00 +0100
[PATCH v4 4/9] ARM: EXYNOS: split up exynos3250 SoC specific PMU data Pankaj Dubey <pankaj.dubey@samsung.com> - 2015-11-10 13:00 +0100
Re: [PATCH v4 4/9] ARM: EXYNOS: split up exynos3250 SoC specific PMU data Krzysztof Kozlowski <k.kozlowski@samsung.com> - 2015-11-12 05:30 +0100
[PATCH v4 6/9] ARM: EXYNOS: split up exynos5250 SoC specific PMU data Pankaj Dubey <pankaj.dubey@samsung.com> - 2015-11-10 13:00 +0100
[PATCH v4 8/9] ARM: EXYNOS: rearrange static and non-static functions of PMU driver Pankaj Dubey <pankaj.dubey@samsung.com> - 2015-11-10 13:00 +0100
Re: [PATCH v4 8/9] ARM: EXYNOS: rearrange static and non-static functions of PMU driver Krzysztof Kozlowski <k.kozlowski@samsung.com> - 2015-11-12 05:40 +0100
[PATCH v4 7/9] ARM: EXYNOS: split up exynos5420 SoC specific PMU data Pankaj Dubey <pankaj.dubey@samsung.com> - 2015-11-10 13:00 +0100
Re: [PATCH v4 7/9] ARM: EXYNOS: split up exynos5420 SoC specific PMU data Krzysztof Kozlowski <k.kozlowski@samsung.com> - 2015-11-12 05:40 +0100
Re: [PATCH v4 3/9] ARM: EXYNOS: Move pmu specific headers under "linux/soc/samsung" Krzysztof Kozlowski <k.kozlowski@samsung.com> - 2015-11-12 05:10 +0100
RE: [PATCH v4 3/9] ARM: EXYNOS: Move pmu specific headers under "linux/soc/samsung" Pankaj Dubey <pankaj.dubey@samsung.com> - 2015-11-13 10:30 +0100
Re: [PATCH v4 9/9] drivers: soc: Add support for Exynos PMU driver Krzysztof Kozlowski <k.kozlowski@samsung.com> - 2015-11-12 05:40 +0100
csiph-web