public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v2 00/14] Devres (Managed Device Resource) for U-Boot
@ 2015-07-13  4:17 Masahiro Yamada
  2015-07-13  4:17 ` [U-Boot] [PATCH v2 01/14] x86: delete unneeded declarations of disable_irq() and enable_irq() Masahiro Yamada
                   ` (14 more replies)
  0 siblings, 15 replies; 35+ messages in thread
From: Masahiro Yamada @ 2015-07-13  4:17 UTC (permalink / raw)
  To: u-boot


Please refer to the commit message of 06/14
for what this series wants to do.


Masahiro Yamada (14):
  x86: delete unneeded declarations of disable_irq() and enable_irq()
  linux_compat: remove cpu_relax() define
  linux_compat: move vzalloc() to header file as an inline function
  linux_compat: handle __GFP_ZERO in kmalloc()
  dm: add DM_FLAG_BOUND flag
  devres: introduce Devres (Managed Device Resource) framework
  devres: add devm_kmalloc() and friends (managed memory allocators)
  dm: refactor device_bind() and device_unbind() with devm_kzalloc()
  dm: merge fail_alloc labels
  linux_compat: introduce GFP_DMA flag for kmalloc()
  dm: refactor device_probe() and device_remove() with devm_kzalloc()
  devres: add debug command to dump device resources
  dm: remove redundant CONFIG_DM from driver/core/Makefile
  devres: compile Devres iif CONFIG_DM_DEVICE_REMOVE is enabled

 arch/x86/include/asm/interrupt.h       |   4 -
 drivers/core/Kconfig                   |  16 ++
 drivers/core/Makefile                  |   4 +-
 drivers/core/device-remove.c           |  41 +----
 drivers/core/device.c                  |  64 +++-----
 drivers/core/devres.c                  | 258 ++++++++++++++++++++++++++++++
 drivers/usb/musb-new/musb_gadget_ep0.c |   1 +
 include/dm/device-internal.h           |  32 ++++
 include/dm/device.h                    | 280 +++++++++++++++++++++++++++++++--
 include/linux/compat.h                 |  29 ++--
 lib/linux_compat.c                     |  19 +--
 11 files changed, 634 insertions(+), 114 deletions(-)
 create mode 100644 drivers/core/devres.c

-- 
1.9.1

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

end of thread, other threads:[~2015-07-22 23:24 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-13  4:17 [U-Boot] [PATCH v2 00/14] Devres (Managed Device Resource) for U-Boot Masahiro Yamada
2015-07-13  4:17 ` [U-Boot] [PATCH v2 01/14] x86: delete unneeded declarations of disable_irq() and enable_irq() Masahiro Yamada
2015-07-22 23:24   ` Simon Glass
2015-07-13  4:17 ` [U-Boot] [PATCH v2 02/14] linux_compat: remove cpu_relax() define Masahiro Yamada
2015-07-13  7:38   ` Lukasz Majewski
2015-07-22 23:24     ` Simon Glass
2015-07-13  4:17 ` [U-Boot] [PATCH v2 03/14] linux_compat: move vzalloc() to header file as an inline function Masahiro Yamada
2015-07-22 23:24   ` Simon Glass
2015-07-13  4:17 ` [U-Boot] [PATCH v2 04/14] linux_compat: handle __GFP_ZERO in kmalloc() Masahiro Yamada
2015-07-13  7:47   ` Lukasz Majewski
2015-07-22 23:24     ` Simon Glass
2015-07-13  4:17 ` [U-Boot] [PATCH v2 05/14] dm: add DM_FLAG_BOUND flag Masahiro Yamada
2015-07-13  4:17 ` [U-Boot] [PATCH v2 06/14] devres: introduce Devres (Managed Device Resource) framework Masahiro Yamada
2015-07-18 14:37   ` Simon Glass
2015-07-13  4:17 ` [U-Boot] [PATCH v2 07/14] devres: add devm_kmalloc() and friends (managed memory allocators) Masahiro Yamada
2015-07-13  4:17 ` [U-Boot] [PATCH v2 08/14] dm: refactor device_bind() and device_unbind() with devm_kzalloc() Masahiro Yamada
2015-07-13  4:17 ` [U-Boot] [PATCH v2 09/14] dm: merge fail_alloc labels Masahiro Yamada
2015-07-13  4:17 ` [U-Boot] [PATCH v2 10/14] linux_compat: introduce GFP_DMA flag for kmalloc() Masahiro Yamada
2015-07-13  7:52   ` Lukasz Majewski
2015-07-13  8:03     ` Masahiro Yamada
2015-07-13  4:17 ` [U-Boot] [PATCH v2 11/14] dm: refactor device_probe() and device_remove() with devm_kzalloc() Masahiro Yamada
2015-07-13  4:17 ` [U-Boot] [PATCH v2 12/14] devres: add debug command to dump device resources Masahiro Yamada
2015-07-13  4:17 ` [U-Boot] [PATCH v2 13/14] dm: remove redundant CONFIG_DM from driver/core/Makefile Masahiro Yamada
2015-07-16  0:59   ` Simon Glass
2015-07-17 23:59     ` Simon Glass
2015-07-13  4:17 ` [U-Boot] [PATCH v2 14/14] devres: compile Devres iif CONFIG_DM_DEVICE_REMOVE is enabled Masahiro Yamada
2015-07-13  6:51 ` [U-Boot] [PATCH v2 00/14] Devres (Managed Device Resource) for U-Boot Albert ARIBAUD
2015-07-13  7:39   ` Masahiro Yamada
2015-07-13 10:55     ` Albert ARIBAUD
2015-07-13 11:42       ` Masahiro Yamada
2015-07-13 17:16         ` Albert ARIBAUD
2015-07-18 14:37           ` Simon Glass
2015-07-20  6:21             ` Masahiro Yamada
2015-07-20 14:16               ` Simon Glass
2015-07-22 17:15                 ` Masahiro Yamada

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox