All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/18] Minor board_f/board_r cleanups
@ 2020-11-05  9:09 Ovidiu Panait
  2020-11-05  9:09 ` [PATCH 01/18] common: board_f: Drop initf_console_record wrapper Ovidiu Panait
                   ` (17 more replies)
  0 siblings, 18 replies; 39+ messages in thread
From: Ovidiu Panait @ 2020-11-05  9:09 UTC (permalink / raw)
  To: u-boot

* Use IS_ENABLED() instead of #ifdef where possible
* Add int return values to various functions so we can drop multiple initr_*
  stub wrappers
* Clean some arch-specific ifdefs
* Minor CONFIG_HANDOFF patches

Ovidiu Panait (18):
  common: board_f: Drop initf_console_record wrapper
  common: board_f: Use IS_ENABLED(CONFIG_TIMER_EARLY) in initf_dm
  common: board_f: Move setup_machine code to setup_bdinfo
  common: board_f: Use IS_ENABLED(CONFIG_OF_EMBED) in
    reserve_fdt,reloc_fdt
  common: board_r: Drop initr_console_record wrapper
  common: board_r: Drop initr_secondary_cpu wrapper
  common: board_r: Drop initr_post_backlog wrapper
  common: board_r: Drop initr_pci_ep wrapper
  common: board_r: Drop initr_pci wrapper
  common: board_r: Drop initr_addr_map wrapper
  common: board_r: Drop initr_noncached wrapper
  common: board_r: Drop initr_xen wrapper
  common: board_r: Drop initr_jumptable wrapper
  common: board_r: Drop initr_api wrapper
  common: board_r: Drop initr_bbmii wrapper
  common: board_r: Drop arch-specific ifdefs around initr_trap
  spl: Kconfig: Add SPL dependency to CONFIG_HANDOFF
  global_data: Enable spl_handoff only if CONFIG_HANDOFF is set

 api/api.c                            |   6 +-
 api/api_private.h                    |   2 +-
 arch/arm/include/asm/mmu.h           |   2 +-
 arch/arm/include/asm/system.h        |   2 +-
 arch/arm/lib/cache.c                 |   4 +-
 arch/arm/mach-bcm283x/init.c         |   4 +-
 arch/m68k/lib/traps.c                |   7 ++
 arch/mips/lib/traps.c                |   7 ++
 arch/powerpc/cpu/mpc85xx/cpu_init.c  |   4 +-
 arch/powerpc/cpu/mpc85xx/tlb.c       |   4 +-
 arch/powerpc/cpu/mpc86xx/cpu_init.c  |   4 +-
 arch/powerpc/include/asm/mmu.h       |   2 +-
 arch/powerpc/lib/Makefile            |   1 +
 arch/powerpc/lib/traps.c             |  17 ++++
 common/board_f.c                     |  78 +++++++-------
 common/board_r.c                     | 145 ++++-----------------------
 common/exports.c                     |   4 +-
 common/spl/Kconfig                   |   2 +-
 drivers/net/phy/miiphybb.c           |   4 +-
 drivers/pci/pci-uclass.c             |   4 +-
 drivers/pci/pci.c                    |   6 +-
 drivers/pci_endpoint/pci_ep-uclass.c |   4 +-
 drivers/xen/hypervisor.c             |   4 +-
 include/api.h                        |   2 +-
 include/asm-generic/global_data.h    |   4 +-
 include/exports.h                    |   2 +-
 include/init.h                       |  13 ++-
 include/miiphy.h                     |   2 +-
 include/post.h                       |   2 +-
 include/xen.h                        |   2 +-
 post/post.c                          |   4 +-
 31 files changed, 148 insertions(+), 200 deletions(-)
 create mode 100644 arch/powerpc/lib/traps.c

-- 
2.17.1

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

end of thread, other threads:[~2020-11-18 14:37 UTC | newest]

Thread overview: 39+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-05  9:09 [PATCH 00/18] Minor board_f/board_r cleanups Ovidiu Panait
2020-11-05  9:09 ` [PATCH 01/18] common: board_f: Drop initf_console_record wrapper Ovidiu Panait
2020-11-14 15:17   ` Simon Glass
2020-11-05  9:09 ` [PATCH 02/18] common: board_f: Use IS_ENABLED(CONFIG_TIMER_EARLY) in initf_dm Ovidiu Panait
2020-11-14 15:17   ` Simon Glass
2020-11-05  9:09 ` [PATCH 03/18] common: board_f: Move setup_machine code to setup_bdinfo Ovidiu Panait
2020-11-14 15:17   ` Simon Glass
2020-11-17  8:00     ` Ovidiu Panait
2020-11-18 14:37       ` Simon Glass
2020-11-05  9:09 ` [PATCH 04/18] common: board_f: Use IS_ENABLED(CONFIG_OF_EMBED) in reserve_fdt, reloc_fdt Ovidiu Panait
2020-11-14 15:17   ` Simon Glass
2020-11-05  9:09 ` [PATCH 05/18] common: board_r: Drop initr_console_record wrapper Ovidiu Panait
2020-11-14 15:17   ` Simon Glass
2020-11-05  9:09 ` [PATCH 06/18] common: board_r: Drop initr_secondary_cpu wrapper Ovidiu Panait
2020-11-14 15:17   ` Simon Glass
2020-11-05  9:09 ` [PATCH 07/18] common: board_r: Drop initr_post_backlog wrapper Ovidiu Panait
2020-11-14 15:17   ` Simon Glass
2020-11-05  9:09 ` [PATCH 08/18] common: board_r: Drop initr_pci_ep wrapper Ovidiu Panait
2020-11-14 15:17   ` Simon Glass
2020-11-05  9:09 ` [PATCH 09/18] common: board_r: Drop initr_pci wrapper Ovidiu Panait
2020-11-14 15:17   ` Simon Glass
2020-11-05  9:09 ` [PATCH 10/18] common: board_r: Drop initr_addr_map wrapper Ovidiu Panait
2020-11-14 15:17   ` Simon Glass
2020-11-05  9:09 ` [PATCH 11/18] common: board_r: Drop initr_noncached wrapper Ovidiu Panait
2020-11-14 15:17   ` Simon Glass
2020-11-05  9:09 ` [PATCH 12/18] common: board_r: Drop initr_xen wrapper Ovidiu Panait
2020-11-14 15:17   ` Simon Glass
2020-11-05  9:09 ` [PATCH 13/18] common: board_r: Drop initr_jumptable wrapper Ovidiu Panait
2020-11-14 15:17   ` Simon Glass
2020-11-05  9:09 ` [PATCH 14/18] common: board_r: Drop initr_api wrapper Ovidiu Panait
2020-11-14 15:17   ` Simon Glass
2020-11-05  9:09 ` [PATCH 15/18] common: board_r: Drop initr_bbmii wrapper Ovidiu Panait
2020-11-14 15:17   ` Simon Glass
2020-11-05  9:09 ` [PATCH 16/18] common: board_r: Drop arch-specific ifdefs around initr_trap Ovidiu Panait
2020-11-14 15:17   ` Simon Glass
2020-11-05  9:09 ` [PATCH 17/18] spl: Kconfig: Add SPL dependency to CONFIG_HANDOFF Ovidiu Panait
2020-11-14 15:17   ` Simon Glass
2020-11-05  9:09 ` [PATCH 18/18] global_data: Enable spl_handoff only if CONFIG_HANDOFF is set Ovidiu Panait
2020-11-14 15:17   ` Simon Glass

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.