From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail-pf0-x243.google.com ([2607:f8b0:400e:c00::243]) by casper.infradead.org with esmtps (Exim 4.90_1 #2 (Red Hat Linux)) id 1fYOxV-0006lm-RF for barebox@lists.infradead.org; Thu, 28 Jun 2018 04:55:07 +0000 Received: by mail-pf0-x243.google.com with SMTP id c22-v6so2014649pfi.2 for ; Wed, 27 Jun 2018 21:54:55 -0700 (PDT) From: Andrey Smirnov Date: Wed, 27 Jun 2018 21:54:31 -0700 Message-Id: <20180628045436.16710-6-andrew.smirnov@gmail.com> In-Reply-To: <20180628045436.16710-1-andrew.smirnov@gmail.com> References: <20180628045436.16710-1-andrew.smirnov@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "barebox" Errors-To: barebox-bounces+u.kleine-koenig=pengutronix.de@lists.infradead.org Subject: [PATCH v4 05/10] ARM: i.MX: bbu: Make imx_bbu_internal_v1_update() public To: barebox@lists.infradead.org Cc: Andrey Smirnov Signed-off-by: Andrey Smirnov --- arch/arm/mach-imx/imx-bbu-internal.c | 2 +- arch/arm/mach-imx/include/mach/bbu.h | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/arch/arm/mach-imx/imx-bbu-internal.c b/arch/arm/mach-imx/imx-bbu-internal.c index 84810f18a..7735273b4 100644 --- a/arch/arm/mach-imx/imx-bbu-internal.c +++ b/arch/arm/mach-imx/imx-bbu-internal.c @@ -156,7 +156,7 @@ static int imx_bbu_check_prereq(const char *devicefile, struct bbu_data *data) * the resulting image to the device. Currently this handles MMC/SD * devices. */ -static int imx_bbu_internal_v1_update(struct bbu_handler *handler, struct bbu_data *data) +int imx_bbu_internal_v1_update(struct bbu_handler *handler, struct bbu_data *data) { struct imx_internal_bbu_handler *imx_handler = container_of(handler, struct imx_internal_bbu_handler, handler); diff --git a/arch/arm/mach-imx/include/mach/bbu.h b/arch/arm/mach-imx/include/mach/bbu.h index d62382831..04be8cea5 100644 --- a/arch/arm/mach-imx/include/mach/bbu.h +++ b/arch/arm/mach-imx/include/mach/bbu.h @@ -9,6 +9,8 @@ struct imx_dcd_v2_entry; #ifdef CONFIG_BAREBOX_UPDATE +int imx_bbu_internal_v1_update(struct bbu_handler *handler, struct bbu_data *data); + int imx51_bbu_internal_mmc_register_handler(const char *name, char *devicefile, unsigned long flags); @@ -41,6 +43,12 @@ int imx_bbu_external_nor_register_handler(const char *name, char *devicefile, #else +static inline int imx_bbu_internal_v1_update(struct bbu_handler *handler, + struct bbu_data *data) +{ + return -ENOSYS; +} + static inline int imx51_bbu_internal_mmc_register_handler(const char *name, char *devicefile, unsigned long flags) { -- 2.17.1 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox