mbox series

[00/28] coresight: next v5.2-rc5 (V2)

Message ID 20190619195318.19254-1-mathieu.poirier@linaro.org (mailing list archive)
Headers show
Series coresight: next v5.2-rc5 (V2) | expand

Message

Mathieu Poirier June 19, 2019, 7:52 p.m. UTC
Here is the rest of the collection - it applies cleanly on your 
char-misc-testing branch (538eca25ff8f).

Thanks,
Mathieu


Arnd Bergmann (1):
  coresight: platform: add OF/APCI dependency

Dan Carpenter (1):
  coresight: Potential uninitialized variable in probe()

Suzuki K Poulose (25):
  coresight: Rename of_coresight to coresight-platform
  coresight: platform: Make memory allocation helper generic
  coresight: Make sure device uses DT for obsolete compatible check
  coresight: Introduce generic platform data helper
  coresight: Make device to CPU mapping generic
  coresight: Remove cpu field from platform data
  coresight: Remove name from platform description
  coresight: Cleanup coresight_remove_conns
  coresight: Reuse platform data structure for connection tracking
  coresight: Rearrange platform data probing
  coresight: Add support for releasing platform specific data
  coresight: platform: Use fwnode handle for device search
  coresight: Use fwnode handle instead of device names
  coresight: Use platform agnostic names
  coresight: stm: ACPI support for parsing stimulus base
  coresight: Support for ACPI bindings
  coresight: acpi: Support for AMBA components
  coresight: acpi: Support for platform devices
  coresight: Add dummy definition for of_coresight_get_cpu()
  coresight: tmc-etr: Do not call smp_processor_id() from preemptible
  coresight: tmc-etr: alloc_perf_buf: Do not call smp_processor_id from
    preemptible
  coresight: tmc-etf: Do not call smp_processor_id from preemptible
  coresight: etb10: Do not call smp_processor_id from preemptible
  coresight: etm3x: Smatch: Fix potential NULL pointer dereference
  coresight: tmc: Smatch: Fix potential NULL pointer dereference

Wei Yongjun (1):
  coresight: replicator: Add terminate entry for acpi_device_id tables

 drivers/acpi/acpi_amba.c                      |   9 +
 drivers/hwtracing/coresight/Kconfig           |   1 +
 drivers/hwtracing/coresight/Makefile          |   3 +-
 drivers/hwtracing/coresight/coresight-catu.c  |  22 +-
 .../hwtracing/coresight/coresight-cpu-debug.c |   3 +-
 drivers/hwtracing/coresight/coresight-etb10.c |  25 +-
 drivers/hwtracing/coresight/coresight-etm3x.c |  24 +-
 drivers/hwtracing/coresight/coresight-etm4x.c |  20 +-
 .../hwtracing/coresight/coresight-funnel.c    |  25 +-
 .../hwtracing/coresight/coresight-platform.c  | 815 ++++++++++++++++++
 drivers/hwtracing/coresight/coresight-priv.h  |   4 +
 .../coresight/coresight-replicator.c          |  36 +-
 drivers/hwtracing/coresight/coresight-stm.c   |  78 +-
 .../hwtracing/coresight/coresight-tmc-etf.c   |   6 +-
 .../hwtracing/coresight/coresight-tmc-etr.c   |  23 +-
 drivers/hwtracing/coresight/coresight-tmc.c   |  37 +-
 drivers/hwtracing/coresight/coresight-tpiu.c  |  17 +-
 drivers/hwtracing/coresight/coresight.c       | 164 +++-
 drivers/hwtracing/coresight/of_coresight.c    | 297 -------
 include/linux/coresight.h                     |  61 +-
 20 files changed, 1203 insertions(+), 467 deletions(-)
 create mode 100644 drivers/hwtracing/coresight/coresight-platform.c
 delete mode 100644 drivers/hwtracing/coresight/of_coresight.c

Comments

Greg KH June 20, 2019, 6:08 a.m. UTC | #1
On Wed, Jun 19, 2019 at 01:52:50PM -0600, Mathieu Poirier wrote:
> Here is the rest of the collection - it applies cleanly on your 
> char-misc-testing branch (538eca25ff8f).

I did not apply patches 20-26 in this series based on the comments I
wrote on them.  Please fix those up and send as a separate patch series
for 5.2-final.

thanks,

greg k-h