mbox series

[GIT,PULL] ACPI IORT updates for v4.17

Message ID 20180308115425.GA31267@e107981-ln.cambridge.arm.com
State New
Headers show
Series [GIT,PULL] ACPI IORT updates for v4.17 | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/linux.git tags/acpi/iort-for-v4.17

Message

Lorenzo Pieralisi March 8, 2018, 11:54 a.m. UTC
Hi Catalin, Will,

some clean-ups patches for the ACPI IORT code aimed at the v4.17 kernel
release:

- Two leftover ACPICA preprocessor guards removal (L.Pieralisi)
- Removal of IORT linker script entry re-introduced by mistake
  in clocksource driver refactoring (J.He)

Please consider pulling them, thank you very much.

Lorenzo

The following changes since commit 7928b2cbe55b2a410a0f5c1f154610059c57b1b2:

  Linux 4.16-rc1 (2018-02-11 15:04:29 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/linux.git tags/acpi/iort-for-v4.17

for you to fetch changes up to 8dc12538dd14480ffcbcbf18b80dc641ee37e9de:

  ACPI/IORT: Remove obsolete ACPI_IORT_SMMU_V3_CAVIUM_CN99XX define (2018-03-08 11:22:30 +0000)

----------------------------------------------------------------
Three ACPI IORT clean-up patches aimed at v4.17 release cycle:

- Removal of IORT linker script entry re-introduced by mistake by clocksource
  drivers refactoring (J.He)
- Two ACPICA guards removal of previously introduced guards to prevent
  ACPICA<->kernel patches dependencies (L.Pieralisi)

----------------------------------------------------------------
Jia He (1):
      ACPI/IORT: Remove linker section for IORT entries again

Lorenzo Pieralisi (2):
      ACPI/IORT: Remove temporary iort_get_id_mapping_index() ACPICA guard
      ACPI/IORT: Remove obsolete ACPI_IORT_SMMU_V3_CAVIUM_CN99XX define

 drivers/acpi/arm64/iort.c         | 12 ------------
 include/asm-generic/vmlinux.lds.h |  1 -
 2 files changed, 13 deletions(-)

Comments

Will Deacon March 9, 2018, 1:48 p.m. UTC | #1
On Thu, Mar 08, 2018 at 11:54:25AM +0000, Lorenzo Pieralisi wrote:
> Jia He (1):
>       ACPI/IORT: Remove linker section for IORT entries again
> 
> Lorenzo Pieralisi (2):
>       ACPI/IORT: Remove temporary iort_get_id_mapping_index() ACPICA guard
>       ACPI/IORT: Remove obsolete ACPI_IORT_SMMU_V3_CAVIUM_CN99XX define
> 
>  drivers/acpi/arm64/iort.c         | 12 ------------
>  include/asm-generic/vmlinux.lds.h |  1 -
>  2 files changed, 13 deletions(-)

Nice diffstat! ;)

I'll pull this into for-next/core.

Will