[U-Boot] [PATCH 03/10] samsung: common: Add misc file and common function misc_init_r().

Minkyu Kang mk7.kang at samsung.com
Wed Dec 11 09:16:30 CET 2013


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 <p.marczak at samsung.com>
> ---
>  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 <p.marczak at samsung.com>
> + *
> + * SPDX-License-Identifier:	GPL-2.0+
> + */
> +
> +#include <common.h>
> +
> +#ifdef CONFIG_MISC_INIT_R
> +/* Common for Samsung boards */
> +int misc_init_r(void)
> +{
> +	return 0;
> +}
> +#endif /* CONFIG_MISC_INIT_R */
> 

Thanks,
Minkyu Kang.



More information about the U-Boot mailing list