From mboxrd@z Thu Jan 1 00:00:00 1970 From: Minkyu Kang Date: Wed, 11 Dec 2013 17:16:30 +0900 Subject: [U-Boot] [PATCH 03/10] samsung: common: Add misc file and common function misc_init_r(). In-Reply-To: <1386093806-2948-4-git-send-email-p.marczak@samsung.com> References: <1386093806-2948-1-git-send-email-p.marczak@samsung.com> <1386093806-2948-4-git-send-email-p.marczak@samsung.com> Message-ID: <52A81F5E.8050708@samsung.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 04/12/13 03:03, Przemyslaw Marczak wrote: > Config options: > - CONFIG_SAMSUNG - misc.c > - CONFIG_MISC_INIT_R - function misc_init_r(); > > New file: > - board/samsung/common/misc.c > > Signed-off-by: Przemyslaw Marczak > --- > board/samsung/common/Makefile | 1 + > board/samsung/common/misc.c | 16 ++++++++++++++++ > 2 files changed, 17 insertions(+) > create mode 100644 board/samsung/common/misc.c > > diff --git a/board/samsung/common/Makefile b/board/samsung/common/Makefile > index 501d974..d1eb63f 100644 > --- a/board/samsung/common/Makefile > +++ b/board/samsung/common/Makefile > @@ -8,3 +8,4 @@ > obj-$(CONFIG_SOFT_I2C_MULTI_BUS) += multi_i2c.o > obj-$(CONFIG_THOR_FUNCTION) += thor.o > obj-$(CONFIG_CMD_USB_MASS_STORAGE) += ums.o > +obj-$(CONFIG_SAMSUNG) += misc.o Why CONFIG_SAMSUNG? We know this Makefile is for samsung boards. > diff --git a/board/samsung/common/misc.c b/board/samsung/common/misc.c > new file mode 100644 > index 0000000..465895b > --- /dev/null > +++ b/board/samsung/common/misc.c > @@ -0,0 +1,16 @@ > +/* > + * Copyright (C) 2013 Samsung Electronics > + * Przemyslaw Marczak > + * > + * SPDX-License-Identifier: GPL-2.0+ > + */ > + > +#include > + > +#ifdef CONFIG_MISC_INIT_R > +/* Common for Samsung boards */ > +int misc_init_r(void) > +{ > + return 0; > +} > +#endif /* CONFIG_MISC_INIT_R */ > Thanks, Minkyu Kang.