From mboxrd@z Thu Jan 1 00:00:00 1970 From: sjg at google.com Date: Fri, 10 Jan 2020 03:57:38 -0500 Subject: [PATCH 13/19] dm: devres: Create a new devres header file In-Reply-To: <20191229211913.13.Ieed54f149d6570d1139d286e4d5a6536fad8f5db@changeid> References: <20191229211913.13.Ieed54f149d6570d1139d286e4d5a6536fad8f5db@changeid> <20191230041928.74874-1-sjg@chromium.org> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de At present these functions are lumped in with the core device functions. They have their own #ifdef to control their availability, so it seems better to split them out. Move them into their own header file. Signed-off-by: Simon Glass --- include/dm/device.h | 255 +---------------------------------------- include/dm/devres.h | 269 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 270 insertions(+), 254 deletions(-) create mode 100644 include/dm/devres.h Applied to u-boot-dm, thanks!