Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/commit/3b2a29e0971397085c616c89a3a09f2609f50ca4
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
12 additions and
0 deletions
drivers/core/regmap.c
include/regmap.h
@ -15,6 +15,14 @@
DECLARE_GLOBAL_DATA_PTR ;
# if CONFIG_IS_ENABLED(OF_PLATDATA)
int regmap_init_mem_platdata ( struct udevice * dev , fdt32_t * reg , int size ,
struct regmap * * mapp )
{
/* TODO(sjg@chromium.org): Implement this when needed */
return 0 ;
}
# else
int regmap_init_mem ( struct udevice * dev , struct regmap * * mapp )
{
const void * blob = gd - > fdt_blob ;
@ -64,6 +72,7 @@ int regmap_init_mem(struct udevice *dev, struct regmap **mapp)
return 0 ;
}
# endif
void * regmap_get_range ( struct regmap * map , unsigned int range_num )
{
@ -56,6 +56,9 @@ int regmap_read(struct regmap *map, uint offset, uint *valp);
*/
int regmap_init_mem ( struct udevice * dev , struct regmap * * mapp ) ;
int regmap_init_mem_platdata ( struct udevice * dev , fdt32_t * reg , int size ,
struct regmap * * mapp ) ;
/**
* regmap_get_range ( ) - Obtain the base memory address of a regmap range
*