[U-Boot-Users] [PATCH 6/7] 83xx/fdt_support: let user specifiy FSL USB Dual-Role controller role

Kim Phillips kim.phillips at freescale.com
Thu Mar 20 02:35:58 CET 2008


On Fri, 14 Mar 2008 23:20:18 +0300
Anton Vorontsov <avorontsov at ru.mvista.com> wrote:


> diff --git a/include/fdt_support.h b/include/fdt_support.h
> index 7836f28..c10de8a 100644
> --- a/include/fdt_support.h
> +++ b/include/fdt_support.h
> @@ -50,6 +50,12 @@ int fdt_find_and_setprop(void *fdt, const char *node, const char *prop,
>  			 const void *val, int len, int create);
>  void fdt_fixup_qe_firmware(void *fdt);
>  
> +#ifdef CONFIG_HAS_FSL_DR_USB
> +void fdt_fixup_dr_usb(void *blob, bd_t *bd);
> +#else
> +static inline void fdt_fixup_dr_usb(void *blob, bd_t *bd) {}
> +#endif /* CONFIG_HAS_FSL_DR_USB */
> +

this looks like a prime candidate for a weak function (which would also
eliminate the need for the new CONFIG_HAS_FSL_DR_USB introduced here).

Kim




More information about the U-Boot mailing list