mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sascha Hauer <s.hauer@pengutronix.de>
To: Barebox List <barebox@lists.infradead.org>
Subject: [PATCH 00/13] ARM: misc cleanups
Date: Thu,  2 Mar 2023 12:15:53 +0100	[thread overview]
Message-ID: <20230302111606.1054037-1-s.hauer@pengutronix.de> (raw)

This series has some misc cleanups I came along while working
on ARM multi-arch support.

Sascha

Sascha Hauer (13):
  ARM: add ENTRY_FUNCTION_HEAD macro
  ARM: mvebu: Use ENTRY_FUNCTION_HEAD
  ARM: at91: Use ENTRY_FUNCTION_HEAD
  ARM: Drop HAVE_MACH_ARM_HEAD
  ARM: drop CONFIG_HAS_ASM_DEBUG_LL
  regulator: pfuze: remove unused include
  ARM: drop unused zynq code in Makefile
  ARM: drop unused mvebu code in Makefile
  ARM: drop unused am35xx code in Makefile
  ARM: Makefile: Drop board-y
  ARM: i.MX: Add missing include
  ARM: stm32mp_defconfig: Enable remaining boards
  mci: imx-esdhc-pbl: add missing include

 Makefile                                      |  4 +-
 arch/arm/Kconfig                              |  6 +-
 arch/arm/Makefile                             | 65 +------------------
 arch/arm/boards/Makefile                      |  2 +
 arch/arm/boards/animeo_ip/lowlevel.c          |  4 +-
 arch/arm/boards/at91rm9200ek/lowlevel.c       |  6 +-
 arch/arm/boards/at91sam9260ek/lowlevel.c      |  6 +-
 arch/arm/boards/at91sam9261ek/lowlevel_init.c |  5 +-
 arch/arm/boards/at91sam9m10g45ek/lowlevel.c   |  4 +-
 arch/arm/boards/at91sam9m10ihd/lowlevel.c     |  4 +-
 arch/arm/boards/at91sam9n12ek/lowlevel.c      |  4 +-
 arch/arm/boards/dss11/lowlevel.c              |  4 +-
 .../boards/globalscale-guruplug/lowlevel.c    |  4 +-
 .../arm/boards/globalscale-mirabox/lowlevel.c |  4 +-
 arch/arm/boards/haba-knx/lowlevel.c           |  4 +-
 arch/arm/boards/lenovo-ix4-300d/lowlevel.c    |  4 +-
 .../boards/marvell-armada-xp-db/lowlevel.c    |  4 +-
 .../boards/marvell-armada-xp-gp/lowlevel.c    |  4 +-
 arch/arm/boards/netgear-rn104/lowlevel.c      |  4 +-
 arch/arm/boards/netgear-rn2120/lowlevel.c     |  4 +-
 .../phytec-phycore-pxa270/lowlevel_init.S     |  1 +
 .../boards/plathome-openblocks-a6/lowlevel.c  |  4 +-
 .../boards/plathome-openblocks-ax3/lowlevel.c |  4 +-
 arch/arm/boards/pm9261/lowlevel_init.c        |  3 +-
 arch/arm/boards/pm9263/lowlevel_init.c        |  3 +-
 arch/arm/boards/pm9g45/lowlevel.c             |  4 +-
 arch/arm/boards/qil-a926x/lowlevel.c          |  6 +-
 arch/arm/boards/solidrun-cubox/lowlevel.c     |  4 +-
 arch/arm/boards/telit-evk-pro3/lowlevel.c     |  4 +-
 .../arm/boards/tny-a926x/tny_a9260_lowlevel.c |  6 +-
 .../arm/boards/tny-a926x/tny_a9263_lowlevel.c |  4 +-
 arch/arm/boards/turris-omnia/lowlevel.c       |  4 +-
 .../arm/boards/usb-a926x/usb_a9260_lowlevel.c |  6 +-
 .../arm/boards/usb-a926x/usb_a9263_lowlevel.c |  5 +-
 arch/arm/boards/usi-topkick/lowlevel.c        |  4 +-
 arch/arm/configs/stm32mp_defconfig            |  2 +
 arch/arm/include/asm/barebox-arm-head.h       |  4 --
 arch/arm/include/asm/barebox-arm.h            |  7 +-
 arch/arm/include/asm/debug_ll.h               |  2 +
 arch/arm/mach-at91/Kconfig                    |  8 ---
 .../mach-at91/include/mach/barebox-arm-head.h | 12 ++--
 .../arm/mach-imx/include/mach/imx7-ccm-regs.h |  1 +
 .../include/mach/barebox-arm-head.h           | 12 ++--
 arch/mips/include/asm/debug_ll.h              |  6 ++
 arch/riscv/Kconfig.socs                       | 12 ++--
 arch/sandbox/Kconfig                          |  2 +-
 arch/x86/include/asm/debug_ll.h               |  6 ++
 common/Kconfig                                |  4 --
 drivers/mci/imx-esdhc-pbl.c                   |  3 +
 drivers/regulator/pfuze.c                     |  1 -
 include/debug_ll.h                            |  8 +--
 51 files changed, 117 insertions(+), 181 deletions(-)
 create mode 100644 arch/mips/include/asm/debug_ll.h
 create mode 100644 arch/x86/include/asm/debug_ll.h

-- 
2.30.2




             reply	other threads:[~2023-03-02 11:17 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-02 11:15 Sascha Hauer [this message]
2023-03-02 11:15 ` [PATCH 01/13] ARM: add ENTRY_FUNCTION_HEAD macro Sascha Hauer
2023-03-02 11:15 ` [PATCH 02/13] ARM: mvebu: Use ENTRY_FUNCTION_HEAD Sascha Hauer
2023-03-02 11:15 ` [PATCH 03/13] ARM: at91: " Sascha Hauer
2023-03-02 16:40   ` Ahmad Fatoum
2023-03-03  8:32     ` Sascha Hauer
2023-03-02 11:15 ` [PATCH 04/13] ARM: Drop HAVE_MACH_ARM_HEAD Sascha Hauer
2023-03-02 11:15 ` [PATCH 05/13] ARM: drop CONFIG_HAS_ASM_DEBUG_LL Sascha Hauer
2023-03-02 11:15 ` [PATCH 06/13] regulator: pfuze: remove unused include Sascha Hauer
2023-03-02 11:16 ` [PATCH 07/13] ARM: drop unused zynq code in Makefile Sascha Hauer
2023-03-02 11:16 ` [PATCH 08/13] ARM: drop unused mvebu " Sascha Hauer
2023-03-02 11:16 ` [PATCH 09/13] ARM: drop unused am35xx " Sascha Hauer
2023-03-02 11:16 ` [PATCH 10/13] ARM: Makefile: Drop board-y Sascha Hauer
2023-03-02 11:16 ` [PATCH 11/13] ARM: i.MX: Add missing include Sascha Hauer
2023-03-02 11:16 ` [PATCH 12/13] ARM: stm32mp_defconfig: Enable remaining boards Sascha Hauer
2023-03-02 11:16 ` [PATCH 13/13] mci: imx-esdhc-pbl: add missing include Sascha Hauer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230302111606.1054037-1-s.hauer@pengutronix.de \
    --to=s.hauer@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox