All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] qcom cleanups for v3.15
@ 2014-02-10 23:23 ` Kumar Gala
  0 siblings, 0 replies; 16+ messages in thread
From: Kumar Gala @ 2014-02-10 23:23 UTC (permalink / raw)
  To: arm
  Cc: David Brown, linux-arm-msm, Arnd Bergmann, Olof Johansson,
	linux-arm-kernel, linux-kernel, Kevin Hilman, Rohit Vaswani

The following changes since commit 38dbfb59d1175ef458d006556061adeaa8751b72:

   Linus 3.14-rc1 (2014-02-02 16:42:13 -0800)

are available in the git repository at:

   git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git tags/qcom-cleanup-for-3.15

for you to fetch changes up to cf1e8f0cd665e2a9966d2bee4e11ecc0938ff166:

   ARM: qcom: Rename various msm prefixed functions to qcom (2014-02-06 16:20:41 -0600)

----------------------------------------------------------------
General cleanups for MSM/QCOM for 3.15

Split of the multiplatform support for the Qualcomm SoCs into a mach-qcom
while we leave mach-msm as legacy support.  Also, some smp and device tree
related cleanups.

----------------------------------------------------------------
Kumar Gala (6):
       ARM: dts: msm: split out msm8660 and msm8960 soc into dts include
       ARM: msm: kill off hotplug.c
       clocksource: qcom: Move clocksource code out of mach-msm
       ARM: qcom: Split Qualcomm support into legacy and multiplatform
       clocksource: qcom: split building of legacy vs multiplatform support
       ARM: qcom: Rename various msm prefixed functions to qcom

Rohit Vaswani (1):
       ARM: msm: Remove pen_release usage

  MAINTAINERS                                        |  8 +++
  arch/arm/Kconfig                                   |  7 +-
  arch/arm/Kconfig.debug                             |  2 +-
  arch/arm/Makefile                                  |  1 +
  arch/arm/boot/dts/Makefile                         |  6 +-
  arch/arm/boot/dts/qcom-msm8660-surf.dts            | 59 +----------------
  arch/arm/boot/dts/qcom-msm8660.dtsi                | 63 ++++++++++++++++++
  arch/arm/boot/dts/qcom-msm8960-cdp.dts             | 66 +------------------
  arch/arm/boot/dts/qcom-msm8960.dtsi                | 70 ++++++++++++++++++++
  arch/arm/mach-msm/Kconfig                          | 54 ++--------------
  arch/arm/mach-msm/Makefile                         |  8 ---
  arch/arm/mach-msm/common.h                         |  1 -
  arch/arm/mach-msm/headsmp.S                        | 39 ------------
  arch/arm/mach-msm/hotplug.c                        | 74 ----------------------
  arch/arm/mach-qcom/Kconfig                         | 33 ++++++++++
  arch/arm/mach-qcom/Makefile                        |  5 ++
  .../arm/{mach-msm/board-dt.c => mach-qcom/board.c} | 15 ++---
  arch/arm/{mach-msm => mach-qcom}/platsmp.c         | 66 ++++++-------------
  arch/arm/{mach-msm => mach-qcom}/scm-boot.c        |  0
  arch/arm/{mach-msm => mach-qcom}/scm-boot.h        |  0
  arch/arm/{mach-msm => mach-qcom}/scm.c             |  0
  arch/arm/{mach-msm => mach-qcom}/scm.h             |  0
  drivers/clocksource/Kconfig                        |  3 +
  drivers/clocksource/Makefile                       |  1 +
  .../timer.c => drivers/clocksource/qcom-timer.c    | 29 ++++-----
  25 files changed, 240 insertions(+), 370 deletions(-)
  create mode 100644 arch/arm/boot/dts/qcom-msm8660.dtsi
  create mode 100644 arch/arm/boot/dts/qcom-msm8960.dtsi
  delete mode 100644 arch/arm/mach-msm/headsmp.S
  delete mode 100644 arch/arm/mach-msm/hotplug.c
  create mode 100644 arch/arm/mach-qcom/Kconfig
  create mode 100644 arch/arm/mach-qcom/Makefile
  rename arch/arm/{mach-msm/board-dt.c => mach-qcom/board.c} (68%)
  rename arch/arm/{mach-msm => mach-qcom}/platsmp.c (65%)
  rename arch/arm/{mach-msm => mach-qcom}/scm-boot.c (100%)
  rename arch/arm/{mach-msm => mach-qcom}/scm-boot.h (100%)
  rename arch/arm/{mach-msm => mach-qcom}/scm.c (100%)
  rename arch/arm/{mach-msm => mach-qcom}/scm.h (100%)
  rename arch/arm/mach-msm/timer.c => drivers/clocksource/qcom-timer.c (98%)

--
Employee of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [GIT PULL] qcom cleanups for v3.15
@ 2014-02-10 23:23 ` Kumar Gala
  0 siblings, 0 replies; 16+ messages in thread
From: Kumar Gala @ 2014-02-10 23:23 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit 38dbfb59d1175ef458d006556061adeaa8751b72:

   Linus 3.14-rc1 (2014-02-02 16:42:13 -0800)

are available in the git repository at:

   git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git tags/qcom-cleanup-for-3.15

for you to fetch changes up to cf1e8f0cd665e2a9966d2bee4e11ecc0938ff166:

   ARM: qcom: Rename various msm prefixed functions to qcom (2014-02-06 16:20:41 -0600)

----------------------------------------------------------------
General cleanups for MSM/QCOM for 3.15

Split of the multiplatform support for the Qualcomm SoCs into a mach-qcom
while we leave mach-msm as legacy support.  Also, some smp and device tree
related cleanups.

----------------------------------------------------------------
Kumar Gala (6):
       ARM: dts: msm: split out msm8660 and msm8960 soc into dts include
       ARM: msm: kill off hotplug.c
       clocksource: qcom: Move clocksource code out of mach-msm
       ARM: qcom: Split Qualcomm support into legacy and multiplatform
       clocksource: qcom: split building of legacy vs multiplatform support
       ARM: qcom: Rename various msm prefixed functions to qcom

Rohit Vaswani (1):
       ARM: msm: Remove pen_release usage

  MAINTAINERS                                        |  8 +++
  arch/arm/Kconfig                                   |  7 +-
  arch/arm/Kconfig.debug                             |  2 +-
  arch/arm/Makefile                                  |  1 +
  arch/arm/boot/dts/Makefile                         |  6 +-
  arch/arm/boot/dts/qcom-msm8660-surf.dts            | 59 +----------------
  arch/arm/boot/dts/qcom-msm8660.dtsi                | 63 ++++++++++++++++++
  arch/arm/boot/dts/qcom-msm8960-cdp.dts             | 66 +------------------
  arch/arm/boot/dts/qcom-msm8960.dtsi                | 70 ++++++++++++++++++++
  arch/arm/mach-msm/Kconfig                          | 54 ++--------------
  arch/arm/mach-msm/Makefile                         |  8 ---
  arch/arm/mach-msm/common.h                         |  1 -
  arch/arm/mach-msm/headsmp.S                        | 39 ------------
  arch/arm/mach-msm/hotplug.c                        | 74 ----------------------
  arch/arm/mach-qcom/Kconfig                         | 33 ++++++++++
  arch/arm/mach-qcom/Makefile                        |  5 ++
  .../arm/{mach-msm/board-dt.c => mach-qcom/board.c} | 15 ++---
  arch/arm/{mach-msm => mach-qcom}/platsmp.c         | 66 ++++++-------------
  arch/arm/{mach-msm => mach-qcom}/scm-boot.c        |  0
  arch/arm/{mach-msm => mach-qcom}/scm-boot.h        |  0
  arch/arm/{mach-msm => mach-qcom}/scm.c             |  0
  arch/arm/{mach-msm => mach-qcom}/scm.h             |  0
  drivers/clocksource/Kconfig                        |  3 +
  drivers/clocksource/Makefile                       |  1 +
  .../timer.c => drivers/clocksource/qcom-timer.c    | 29 ++++-----
  25 files changed, 240 insertions(+), 370 deletions(-)
  create mode 100644 arch/arm/boot/dts/qcom-msm8660.dtsi
  create mode 100644 arch/arm/boot/dts/qcom-msm8960.dtsi
  delete mode 100644 arch/arm/mach-msm/headsmp.S
  delete mode 100644 arch/arm/mach-msm/hotplug.c
  create mode 100644 arch/arm/mach-qcom/Kconfig
  create mode 100644 arch/arm/mach-qcom/Makefile
  rename arch/arm/{mach-msm/board-dt.c => mach-qcom/board.c} (68%)
  rename arch/arm/{mach-msm => mach-qcom}/platsmp.c (65%)
  rename arch/arm/{mach-msm => mach-qcom}/scm-boot.c (100%)
  rename arch/arm/{mach-msm => mach-qcom}/scm-boot.h (100%)
  rename arch/arm/{mach-msm => mach-qcom}/scm.c (100%)
  rename arch/arm/{mach-msm => mach-qcom}/scm.h (100%)
  rename arch/arm/mach-msm/timer.c => drivers/clocksource/qcom-timer.c (98%)

--
Employee of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [GIT PULL] qcom cleanups for v3.15
  2014-02-10 23:23 ` Kumar Gala
@ 2014-02-18 16:41   ` Kumar Gala
  -1 siblings, 0 replies; 16+ messages in thread
From: Kumar Gala @ 2014-02-18 16:41 UTC (permalink / raw)
  To: arm
  Cc: David Brown, linux-arm-msm, Arnd Bergmann, Olof Johansson,
	linux-arm-kernel, linux-kernel, Kevin Hilman, Rohit Vaswani


On Feb 10, 2014, at 5:23 PM, Kumar Gala <galak@codeaurora.org> wrote:

> The following changes since commit 38dbfb59d1175ef458d006556061adeaa8751b72:
> 
>  Linus 3.14-rc1 (2014-02-02 16:42:13 -0800)
> 
> are available in the git repository at:
> 
>  git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git tags/qcom-cleanup-for-3.15
> 
> for you to fetch changes up to cf1e8f0cd665e2a9966d2bee4e11ecc0938ff166:
> 
>  ARM: qcom: Rename various msm prefixed functions to qcom (2014-02-06 16:20:41 -0600)
> 
> ----------------------------------------------------------------
> General cleanups for MSM/QCOM for 3.15
> 
> Split of the multiplatform support for the Qualcomm SoCs into a mach-qcom
> while we leave mach-msm as legacy support.  Also, some smp and device tree
> related cleanups.
> 
> ----------------------------------------------------------------
> Kumar Gala (6):
>      ARM: dts: msm: split out msm8660 and msm8960 soc into dts include
>      ARM: msm: kill off hotplug.c
>      clocksource: qcom: Move clocksource code out of mach-msm
>      ARM: qcom: Split Qualcomm support into legacy and multiplatform
>      clocksource: qcom: split building of legacy vs multiplatform support
>      ARM: qcom: Rename various msm prefixed functions to qcom
> 
> Rohit Vaswani (1):
>      ARM: msm: Remove pen_release usage
> 
> MAINTAINERS                                        |  8 +++
> arch/arm/Kconfig                                   |  7 +-
> arch/arm/Kconfig.debug                             |  2 +-
> arch/arm/Makefile                                  |  1 +
> arch/arm/boot/dts/Makefile                         |  6 +-
> arch/arm/boot/dts/qcom-msm8660-surf.dts            | 59 +----------------
> arch/arm/boot/dts/qcom-msm8660.dtsi                | 63 ++++++++++++++++++
> arch/arm/boot/dts/qcom-msm8960-cdp.dts             | 66 +------------------
> arch/arm/boot/dts/qcom-msm8960.dtsi                | 70 ++++++++++++++++++++
> arch/arm/mach-msm/Kconfig                          | 54 ++--------------
> arch/arm/mach-msm/Makefile                         |  8 ---
> arch/arm/mach-msm/common.h                         |  1 -
> arch/arm/mach-msm/headsmp.S                        | 39 ------------
> arch/arm/mach-msm/hotplug.c                        | 74 ----------------------
> arch/arm/mach-qcom/Kconfig                         | 33 ++++++++++
> arch/arm/mach-qcom/Makefile                        |  5 ++
> .../arm/{mach-msm/board-dt.c => mach-qcom/board.c} | 15 ++---
> arch/arm/{mach-msm => mach-qcom}/platsmp.c         | 66 ++++++-------------
> arch/arm/{mach-msm => mach-qcom}/scm-boot.c        |  0
> arch/arm/{mach-msm => mach-qcom}/scm-boot.h        |  0
> arch/arm/{mach-msm => mach-qcom}/scm.c             |  0
> arch/arm/{mach-msm => mach-qcom}/scm.h             |  0
> drivers/clocksource/Kconfig                        |  3 +
> drivers/clocksource/Makefile                       |  1 +
> .../timer.c => drivers/clocksource/qcom-timer.c    | 29 ++++-----
> 25 files changed, 240 insertions(+), 370 deletions(-)
> create mode 100644 arch/arm/boot/dts/qcom-msm8660.dtsi
> create mode 100644 arch/arm/boot/dts/qcom-msm8960.dtsi
> delete mode 100644 arch/arm/mach-msm/headsmp.S
> delete mode 100644 arch/arm/mach-msm/hotplug.c
> create mode 100644 arch/arm/mach-qcom/Kconfig
> create mode 100644 arch/arm/mach-qcom/Makefile
> rename arch/arm/{mach-msm/board-dt.c => mach-qcom/board.c} (68%)
> rename arch/arm/{mach-msm => mach-qcom}/platsmp.c (65%)
> rename arch/arm/{mach-msm => mach-qcom}/scm-boot.c (100%)
> rename arch/arm/{mach-msm => mach-qcom}/scm-boot.h (100%)
> rename arch/arm/{mach-msm => mach-qcom}/scm.c (100%)
> rename arch/arm/{mach-msm => mach-qcom}/scm.h (100%)
> rename arch/arm/mach-msm/timer.c => drivers/clocksource/qcom-timer.c (98%)

ping

- k

-- 
Employee of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [GIT PULL] qcom cleanups for v3.15
@ 2014-02-18 16:41   ` Kumar Gala
  0 siblings, 0 replies; 16+ messages in thread
From: Kumar Gala @ 2014-02-18 16:41 UTC (permalink / raw)
  To: linux-arm-kernel


On Feb 10, 2014, at 5:23 PM, Kumar Gala <galak@codeaurora.org> wrote:

> The following changes since commit 38dbfb59d1175ef458d006556061adeaa8751b72:
> 
>  Linus 3.14-rc1 (2014-02-02 16:42:13 -0800)
> 
> are available in the git repository at:
> 
>  git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git tags/qcom-cleanup-for-3.15
> 
> for you to fetch changes up to cf1e8f0cd665e2a9966d2bee4e11ecc0938ff166:
> 
>  ARM: qcom: Rename various msm prefixed functions to qcom (2014-02-06 16:20:41 -0600)
> 
> ----------------------------------------------------------------
> General cleanups for MSM/QCOM for 3.15
> 
> Split of the multiplatform support for the Qualcomm SoCs into a mach-qcom
> while we leave mach-msm as legacy support.  Also, some smp and device tree
> related cleanups.
> 
> ----------------------------------------------------------------
> Kumar Gala (6):
>      ARM: dts: msm: split out msm8660 and msm8960 soc into dts include
>      ARM: msm: kill off hotplug.c
>      clocksource: qcom: Move clocksource code out of mach-msm
>      ARM: qcom: Split Qualcomm support into legacy and multiplatform
>      clocksource: qcom: split building of legacy vs multiplatform support
>      ARM: qcom: Rename various msm prefixed functions to qcom
> 
> Rohit Vaswani (1):
>      ARM: msm: Remove pen_release usage
> 
> MAINTAINERS                                        |  8 +++
> arch/arm/Kconfig                                   |  7 +-
> arch/arm/Kconfig.debug                             |  2 +-
> arch/arm/Makefile                                  |  1 +
> arch/arm/boot/dts/Makefile                         |  6 +-
> arch/arm/boot/dts/qcom-msm8660-surf.dts            | 59 +----------------
> arch/arm/boot/dts/qcom-msm8660.dtsi                | 63 ++++++++++++++++++
> arch/arm/boot/dts/qcom-msm8960-cdp.dts             | 66 +------------------
> arch/arm/boot/dts/qcom-msm8960.dtsi                | 70 ++++++++++++++++++++
> arch/arm/mach-msm/Kconfig                          | 54 ++--------------
> arch/arm/mach-msm/Makefile                         |  8 ---
> arch/arm/mach-msm/common.h                         |  1 -
> arch/arm/mach-msm/headsmp.S                        | 39 ------------
> arch/arm/mach-msm/hotplug.c                        | 74 ----------------------
> arch/arm/mach-qcom/Kconfig                         | 33 ++++++++++
> arch/arm/mach-qcom/Makefile                        |  5 ++
> .../arm/{mach-msm/board-dt.c => mach-qcom/board.c} | 15 ++---
> arch/arm/{mach-msm => mach-qcom}/platsmp.c         | 66 ++++++-------------
> arch/arm/{mach-msm => mach-qcom}/scm-boot.c        |  0
> arch/arm/{mach-msm => mach-qcom}/scm-boot.h        |  0
> arch/arm/{mach-msm => mach-qcom}/scm.c             |  0
> arch/arm/{mach-msm => mach-qcom}/scm.h             |  0
> drivers/clocksource/Kconfig                        |  3 +
> drivers/clocksource/Makefile                       |  1 +
> .../timer.c => drivers/clocksource/qcom-timer.c    | 29 ++++-----
> 25 files changed, 240 insertions(+), 370 deletions(-)
> create mode 100644 arch/arm/boot/dts/qcom-msm8660.dtsi
> create mode 100644 arch/arm/boot/dts/qcom-msm8960.dtsi
> delete mode 100644 arch/arm/mach-msm/headsmp.S
> delete mode 100644 arch/arm/mach-msm/hotplug.c
> create mode 100644 arch/arm/mach-qcom/Kconfig
> create mode 100644 arch/arm/mach-qcom/Makefile
> rename arch/arm/{mach-msm/board-dt.c => mach-qcom/board.c} (68%)
> rename arch/arm/{mach-msm => mach-qcom}/platsmp.c (65%)
> rename arch/arm/{mach-msm => mach-qcom}/scm-boot.c (100%)
> rename arch/arm/{mach-msm => mach-qcom}/scm-boot.h (100%)
> rename arch/arm/{mach-msm => mach-qcom}/scm.c (100%)
> rename arch/arm/{mach-msm => mach-qcom}/scm.h (100%)
> rename arch/arm/mach-msm/timer.c => drivers/clocksource/qcom-timer.c (98%)

ping

- k

-- 
Employee of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [GIT PULL] qcom cleanups for v3.15
  2014-02-10 23:23 ` Kumar Gala
@ 2014-02-19  0:06   ` Stephen Boyd
  -1 siblings, 0 replies; 16+ messages in thread
From: Stephen Boyd @ 2014-02-19  0:06 UTC (permalink / raw)
  To: Kumar Gala
  Cc: arm, David Brown, linux-arm-msm, Arnd Bergmann, Olof Johansson,
	linux-arm-kernel, linux-kernel, Kevin Hilman, Rohit Vaswani

On 02/10/14 15:23, Kumar Gala wrote:
>
> Kumar Gala (6):
>       ARM: dts: msm: split out msm8660 and msm8960 soc into dts include
>       ARM: msm: kill off hotplug.c
>       clocksource: qcom: Move clocksource code out of mach-msm
>       ARM: qcom: Split Qualcomm support into legacy and multiplatform

Sorry to nag, but can you please address my comment on this patch?

-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
hosted by The Linux Foundation

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [GIT PULL] qcom cleanups for v3.15
@ 2014-02-19  0:06   ` Stephen Boyd
  0 siblings, 0 replies; 16+ messages in thread
From: Stephen Boyd @ 2014-02-19  0:06 UTC (permalink / raw)
  To: linux-arm-kernel

On 02/10/14 15:23, Kumar Gala wrote:
>
> Kumar Gala (6):
>       ARM: dts: msm: split out msm8660 and msm8960 soc into dts include
>       ARM: msm: kill off hotplug.c
>       clocksource: qcom: Move clocksource code out of mach-msm
>       ARM: qcom: Split Qualcomm support into legacy and multiplatform

Sorry to nag, but can you please address my comment on this patch?

-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
hosted by The Linux Foundation

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [GIT PULL] qcom cleanups for v3.15
  2014-02-19  0:06   ` Stephen Boyd
@ 2014-02-19 15:20     ` Kumar Gala
  -1 siblings, 0 replies; 16+ messages in thread
From: Kumar Gala @ 2014-02-19 15:20 UTC (permalink / raw)
  To: Stephen Boyd
  Cc: arm, David Brown, linux-arm-msm, Arnd Bergmann, Olof Johansson,
	linux-arm-kernel, linux-kernel, Kevin Hilman, Rohit Vaswani


On Feb 18, 2014, at 6:06 PM, Stephen Boyd <sboyd@codeaurora.org> wrote:

> On 02/10/14 15:23, Kumar Gala wrote:
>> 
>> Kumar Gala (6):
>>      ARM: dts: msm: split out msm8660 and msm8960 soc into dts include
>>      ARM: msm: kill off hotplug.c
>>      clocksource: qcom: Move clocksource code out of mach-msm
>>      ARM: qcom: Split Qualcomm support into legacy and multiplatform
> 
> Sorry to nag, but can you please address my comment on this patch?

Which comment?  The copyright one or something else?

- k

-- 
Employee of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [GIT PULL] qcom cleanups for v3.15
@ 2014-02-19 15:20     ` Kumar Gala
  0 siblings, 0 replies; 16+ messages in thread
From: Kumar Gala @ 2014-02-19 15:20 UTC (permalink / raw)
  To: linux-arm-kernel


On Feb 18, 2014, at 6:06 PM, Stephen Boyd <sboyd@codeaurora.org> wrote:

> On 02/10/14 15:23, Kumar Gala wrote:
>> 
>> Kumar Gala (6):
>>      ARM: dts: msm: split out msm8660 and msm8960 soc into dts include
>>      ARM: msm: kill off hotplug.c
>>      clocksource: qcom: Move clocksource code out of mach-msm
>>      ARM: qcom: Split Qualcomm support into legacy and multiplatform
> 
> Sorry to nag, but can you please address my comment on this patch?

Which comment?  The copyright one or something else?

- k

-- 
Employee of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [GIT PULL] qcom cleanups for v3.15
  2014-02-19 15:20     ` Kumar Gala
@ 2014-02-19 18:56       ` Stephen Boyd
  -1 siblings, 0 replies; 16+ messages in thread
From: Stephen Boyd @ 2014-02-19 18:56 UTC (permalink / raw)
  To: Kumar Gala
  Cc: arm, David Brown, linux-arm-msm, Arnd Bergmann, Olof Johansson,
	linux-arm-kernel, linux-kernel, Kevin Hilman, Rohit Vaswani

On 02/19/14 07:20, Kumar Gala wrote:
> On Feb 18, 2014, at 6:06 PM, Stephen Boyd <sboyd@codeaurora.org> wrote:
>
>> On 02/10/14 15:23, Kumar Gala wrote:
>>> Kumar Gala (6):
>>>      ARM: dts: msm: split out msm8660 and msm8960 soc into dts include
>>>      ARM: msm: kill off hotplug.c
>>>      clocksource: qcom: Move clocksource code out of mach-msm
>>>      ARM: qcom: Split Qualcomm support into legacy and multiplatform
>> Sorry to nag, but can you please address my comment on this patch?
> Which comment?  The copyright one or something else?
>

Yes the copyright one.

-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
hosted by The Linux Foundation

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [GIT PULL] qcom cleanups for v3.15
@ 2014-02-19 18:56       ` Stephen Boyd
  0 siblings, 0 replies; 16+ messages in thread
From: Stephen Boyd @ 2014-02-19 18:56 UTC (permalink / raw)
  To: linux-arm-kernel

On 02/19/14 07:20, Kumar Gala wrote:
> On Feb 18, 2014, at 6:06 PM, Stephen Boyd <sboyd@codeaurora.org> wrote:
>
>> On 02/10/14 15:23, Kumar Gala wrote:
>>> Kumar Gala (6):
>>>      ARM: dts: msm: split out msm8660 and msm8960 soc into dts include
>>>      ARM: msm: kill off hotplug.c
>>>      clocksource: qcom: Move clocksource code out of mach-msm
>>>      ARM: qcom: Split Qualcomm support into legacy and multiplatform
>> Sorry to nag, but can you please address my comment on this patch?
> Which comment?  The copyright one or something else?
>

Yes the copyright one.

-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
hosted by The Linux Foundation

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [GIT PULL] qcom cleanups for v3.15
  2014-02-19 18:56       ` Stephen Boyd
@ 2014-02-19 19:30         ` Kumar Gala
  -1 siblings, 0 replies; 16+ messages in thread
From: Kumar Gala @ 2014-02-19 19:30 UTC (permalink / raw)
  To: Stephen Boyd
  Cc: arm, David Brown, linux-arm-msm, Arnd Bergmann, Olof Johansson,
	linux-arm-kernel, linux-kernel, Kevin Hilman, Rohit Vaswani


On Feb 19, 2014, at 12:56 PM, Stephen Boyd <sboyd@codeaurora.org> wrote:

> On 02/19/14 07:20, Kumar Gala wrote:
>> On Feb 18, 2014, at 6:06 PM, Stephen Boyd <sboyd@codeaurora.org> wrote:
>> 
>>> On 02/10/14 15:23, Kumar Gala wrote:
>>>> Kumar Gala (6):
>>>>     ARM: dts: msm: split out msm8660 and msm8960 soc into dts include
>>>>     ARM: msm: kill off hotplug.c
>>>>     clocksource: qcom: Move clocksource code out of mach-msm
>>>>     ARM: qcom: Split Qualcomm support into legacy and multiplatform
>>> Sorry to nag, but can you please address my comment on this patch?
>> Which comment?  The copyright one or something else?
>> 
> 
> Yes the copyright one.

Was going to send that as a separate patch.  So no reason to hold up this pull request on it.

- k

-- 
Employee of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [GIT PULL] qcom cleanups for v3.15
@ 2014-02-19 19:30         ` Kumar Gala
  0 siblings, 0 replies; 16+ messages in thread
From: Kumar Gala @ 2014-02-19 19:30 UTC (permalink / raw)
  To: linux-arm-kernel


On Feb 19, 2014, at 12:56 PM, Stephen Boyd <sboyd@codeaurora.org> wrote:

> On 02/19/14 07:20, Kumar Gala wrote:
>> On Feb 18, 2014, at 6:06 PM, Stephen Boyd <sboyd@codeaurora.org> wrote:
>> 
>>> On 02/10/14 15:23, Kumar Gala wrote:
>>>> Kumar Gala (6):
>>>>     ARM: dts: msm: split out msm8660 and msm8960 soc into dts include
>>>>     ARM: msm: kill off hotplug.c
>>>>     clocksource: qcom: Move clocksource code out of mach-msm
>>>>     ARM: qcom: Split Qualcomm support into legacy and multiplatform
>>> Sorry to nag, but can you please address my comment on this patch?
>> Which comment?  The copyright one or something else?
>> 
> 
> Yes the copyright one.

Was going to send that as a separate patch.  So no reason to hold up this pull request on it.

- k

-- 
Employee of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [GIT PULL] qcom cleanups for v3.15
  2014-02-19 19:30         ` Kumar Gala
@ 2014-02-19 20:13           ` Stephen Boyd
  -1 siblings, 0 replies; 16+ messages in thread
From: Stephen Boyd @ 2014-02-19 20:13 UTC (permalink / raw)
  To: Kumar Gala
  Cc: arm, David Brown, linux-arm-msm, Arnd Bergmann, Olof Johansson,
	linux-arm-kernel, linux-kernel, Kevin Hilman, Rohit Vaswani

On 02/19/14 11:30, Kumar Gala wrote:
> On Feb 19, 2014, at 12:56 PM, Stephen Boyd <sboyd@codeaurora.org> wrote:
>
>> Yes the copyright one.
> Was going to send that as a separate patch.  So no reason to hold up this pull request on it.
>
>

Ok sounds good.

-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
hosted by The Linux Foundation

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [GIT PULL] qcom cleanups for v3.15
@ 2014-02-19 20:13           ` Stephen Boyd
  0 siblings, 0 replies; 16+ messages in thread
From: Stephen Boyd @ 2014-02-19 20:13 UTC (permalink / raw)
  To: linux-arm-kernel

On 02/19/14 11:30, Kumar Gala wrote:
> On Feb 19, 2014, at 12:56 PM, Stephen Boyd <sboyd@codeaurora.org> wrote:
>
>> Yes the copyright one.
> Was going to send that as a separate patch.  So no reason to hold up this pull request on it.
>
>

Ok sounds good.

-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
hosted by The Linux Foundation

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [GIT PULL] qcom cleanups for v3.15
  2014-02-10 23:23 ` Kumar Gala
@ 2014-02-20  8:52   ` Olof Johansson
  -1 siblings, 0 replies; 16+ messages in thread
From: Olof Johansson @ 2014-02-20  8:52 UTC (permalink / raw)
  To: Kumar Gala
  Cc: arm, David Brown, linux-arm-msm, Arnd Bergmann, linux-arm-kernel,
	linux-kernel, Kevin Hilman, Rohit Vaswani

On Mon, Feb 10, 2014 at 05:23:28PM -0600, Kumar Gala wrote:
> The following changes since commit 38dbfb59d1175ef458d006556061adeaa8751b72:
> 
>   Linus 3.14-rc1 (2014-02-02 16:42:13 -0800)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git tags/qcom-cleanup-for-3.15

Merged, thanks,


-Olof

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [GIT PULL] qcom cleanups for v3.15
@ 2014-02-20  8:52   ` Olof Johansson
  0 siblings, 0 replies; 16+ messages in thread
From: Olof Johansson @ 2014-02-20  8:52 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Feb 10, 2014 at 05:23:28PM -0600, Kumar Gala wrote:
> The following changes since commit 38dbfb59d1175ef458d006556061adeaa8751b72:
> 
>   Linus 3.14-rc1 (2014-02-02 16:42:13 -0800)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git tags/qcom-cleanup-for-3.15

Merged, thanks,


-Olof

^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2014-02-20  8:52 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-02-10 23:23 [GIT PULL] qcom cleanups for v3.15 Kumar Gala
2014-02-10 23:23 ` Kumar Gala
2014-02-18 16:41 ` Kumar Gala
2014-02-18 16:41   ` Kumar Gala
2014-02-19  0:06 ` Stephen Boyd
2014-02-19  0:06   ` Stephen Boyd
2014-02-19 15:20   ` Kumar Gala
2014-02-19 15:20     ` Kumar Gala
2014-02-19 18:56     ` Stephen Boyd
2014-02-19 18:56       ` Stephen Boyd
2014-02-19 19:30       ` Kumar Gala
2014-02-19 19:30         ` Kumar Gala
2014-02-19 20:13         ` Stephen Boyd
2014-02-19 20:13           ` Stephen Boyd
2014-02-20  8:52 ` Olof Johansson
2014-02-20  8:52   ` Olof Johansson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.