u-boot-brain/board
Neil Armstrong d0a9b82b75 regmap: fix regmap_read_poll_timeout warning about sandbox_timer_add_offset
When fixing sandbox test for regmap_read_poll_timeout(), the
sandbox_timer_add_offset was introduced but only defined in sandbox code
thus generating warnings when used out of sandbox :

include/regmap.h:289:2: note: in expansion of macro 'regmap_read_poll_timeout_test'
regmap_read_poll_timeout_test(map, addr, val, cond, sleep_us, \
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
drivers/spi/meson_spifc.c:169:8: note: in expansion of macro 'regmap_read_poll_timeout'
ret = regmap_read_poll_timeout(spifc->regmap, REG_SLAVE, data,
        ^~~~~~~~~~~~~~~~~~~~~~~~
drivers/spi/meson_spifc.c: In function 'meson_spifc_txrx':
include/regmap.h:277:4: warning: implicit declaration of function 'sandbox_timer_add_offset' [-Wimplicit-function-declaration]

This fix adds a timer_test_add_offset() only defined in sandbox, and
renames the previous sandbox_timer_add_offset() to it.

Cc: Simon Glass <sjg@chromium.org>
Reported-by: Tom Rini <trini@konsulko.com>
Fixes: df9cf1cc08 ("test: dm: regmap: Fix the long test delay")
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
2019-04-23 11:17:15 +02:00
..
8dtech/eco5pk
abilis/tb100
advantech
alliedtelesis
alphaproject/ap_sh4a_4a
altera ARM: socfpga: Fix A10 SoCDK Kconfig 2019-03-09 17:59:14 +01:00
amarula/vyasa-rk3288
amazon/kc1
amlogic boards: Amlogic: Add support for Libretech-AC 2019-04-10 16:50:46 +02:00
AndesTech riscv: ae350: enable SMP 2019-04-08 09:45:08 +08:00
Arcturus/ucp1020 Convert CONFIG_SF_DEFAULT_* to Kconfig 2019-03-25 17:36:53 -04:00
aristainetos
armadeus
armltd
aspeed/evb_ast2500
astro/mcf5373l
atmark-techno/armadillo-800eva
atmel
avionic-design
bachmann/ot1200
barco
Barix/ipam390
beckhoff/mx53cx9020
birdland/bav335x
bitmain/antminer_s9
bluegiga/apx4devkit
bluewater
bosch/shc
boundary/nitrogen6x imx: mx6qsabrelite: Update the SabreLite README 2019-03-13 09:14:35 +01:00
broadcom bcm963158: use TARGET_BCM963158 instead of ARCH_BCM63158 2019-02-19 08:55:43 -05:00
bticino/mamoj
buffalo/lsxl
BuR board/BuR/brxre1: convert do DM 2019-02-19 08:55:43 -05:00
BuS/eb_cpu5282
cadence/xtfpga
calao/usb_a9263
CarMediaLab/flea3
cavium/thunderx
ccv/xpress
cei/cei-tk1-som
chipspark/popmetal_rk3288
cirrus/edb93xx
cloudengines/pogo_e02
cobra5272
compal/paz00
compulab
comtrend
congatec
coreboot
corscience/tricorder
creative/xfi3
cssi
CZ.NIC watchdog: Move watchdog_dev to data section (BSS may not be cleared) 2019-04-08 09:21:39 -04:00
d-link/dns325
davinci ARM: da8xxevm: Add NAND instructions for da850-evm to README 2019-02-19 08:55:43 -05:00
devboards/dbm-soc1
dfi
dhelectronics/dh_imx6
ebv/socrates
eets/pdu001 arm: pdu001: Fix order of include files 2019-02-28 14:21:46 -05:00
efi
egnite/ethernut5
el/el6x
elgin/elgin_rv1108
embest/mx6boards
emulation riscv: qemu: enable SMP 2019-04-08 09:44:26 +08:00
engicam board: engicam: Add watchdog support on Engicam 2019-03-13 09:14:35 +01:00
esd
espt
firefly/firefly-rk3288
freescale imx8mq_evk: README: Make the underline marker fill the whole sentence 2019-04-02 10:36:35 +02:00
gardena arm: at91: Add gardena-gateway-at91sam support 2019-04-09 09:28:50 +03:00
gateworks/gw_ventana imx: ventana: added support for 16bit 8Gb density (1GiB) DRAM 2019-03-13 09:14:35 +01:00
gdsys
ge
geekbuying/geekbox
google
grinn ARM: liteboard: move towards driver model and device-tree boot 2019-03-13 09:14:35 +01:00
gumstix
h2200
highbank
hisilicon
htkw/mcx
huawei/hg556a
ids/ids8313
imgtec
intel
inversepath/usbarmory
iomega/iconnect
is1
isee
k+p
keymile
kmc/kzm9g
kobol/helios4
kosagi/novena
l+g/vinco
LaCie
laird
lego/ev3
lg/sniper
liebherr
logicpd ARM: omap3_logic: Enable SPL booting device tree 2019-02-19 16:58:23 -05:00
Marvell
maxbcm
mediatek
menlo/m53menlo
microchip/pic32mzda
micronas/vct
mini-box/picosam9g45
mpc8308_p1m
mpr2
mqmaker/miqi_rk3288
ms7720se
ms7722se
ms7750se
mscc
netgear
nokia/rx51
nvidia
olimex/mx23_olinuxino
omicron/calimain
opalkelly/zynq xilinx: Move zynq_board_read_rom_ethaddr to shared location 2019-02-14 14:31:09 +01:00
overo
pandora
phytec
ppcag/bg0900
qca
qemu-mips
qualcomm
quipos/cairo
radxa
raidsonic/ib62x0
raspberrypi/rpi RPi: Add mbrugger as board maintainer 2019-03-29 10:53:18 -04:00
renesas ARM: rmobile: alt: Fix I2C bus number 2019-03-30 08:28:25 +01:00
rockchip
ronetix board: pm9g45: Migrate to CONFIG_DM 2019-04-09 09:28:50 +03:00
sagem/f@st1704
samsung arndale: fix unknown status 2019-03-14 09:38:41 +09:00
samtec
sandbox regmap: fix regmap_read_poll_timeout warning about sandbox_timer_add_offset 2019-04-23 11:17:15 +02:00
sandisk/sansa_fuze_plus
sbc8349
sbc8548
sbc8641d
schulercontrol/sc_sps_1
Seagate
seco
seeed/linkit-smart-7688
sfr/nb4_ser
shmin
siemens
sifive/fu540 riscv: fu540: enable SMP 2019-04-08 09:44:26 +08:00
silica/pengwyn
sks-kinkel/sksimx6
socrates
solidrun
spear
sr1500
st
sunxi sunxi: Add Bananapi M2+ H5 board 2019-02-18 14:46:53 +05:30
Synology
synopsys hsdk: readme: Suggest getting pyelftools with pip 2019-03-28 10:50:32 +03:00
sysam
syteco/zmx25
tbs/tbs2910
tcl/sl50
technexion pico-imx7d: README: Recommend the usage of a USB hub 2019-03-31 20:19:19 +02:00
technologic
teejet/mt_ventoux
terasic
theadorable
theobroma-systems
ti board: ti: Move fastboot functions out of TI_SECURE_DEVICE ifdef 2019-03-22 12:15:22 -04:00
timll
topic/zynq
toradex board: toradex: turn off lcd backlight before OS handover 2019-02-20 09:01:45 -07:00
tplink/wdr4300
tqc tqma6s_wru4_mmc: manage board_spi_cs_gpio correctly 2019-03-25 17:35:52 -04:00
ucRobotics/bubblegum_96
udoo
vamrs/rock960_rk3399
varisys
ve8313
vscom/baltos
wandboard
warp
warp7 warp7: Fix the write to the LDOGCTL PMIC register 2019-03-13 09:14:35 +01:00
woodburn
work-microwave/work_92105
xes
xilinx watchdog: Move watchdog_dev to data section (BSS may not be cleared) 2019-04-08 09:21:39 -04:00
zipitz2
zyxel/nsa310s