imx: mx6cuboxi: Disable thermal driver in SPL
This feature is incompatble with of-platdata since it uses the U_BOOT_DEVICE() macro. With of-platdata the only devices permitted are those created by dtoc. The driver is not used in SPL anyway, so exclude it from that build. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Fabio Estevam <festevam@gmail.com>
This commit is contained in:
@@ -34,7 +34,7 @@ struct scu_regs {
|
|||||||
u32 fpga_rev;
|
u32 fpga_rev;
|
||||||
};
|
};
|
||||||
|
|
||||||
#if defined(CONFIG_IMX_THERMAL)
|
#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_IMX_THERMAL)
|
||||||
static const struct imx_thermal_plat imx6_thermal_plat = {
|
static const struct imx_thermal_plat imx6_thermal_plat = {
|
||||||
.regs = (void *)ANATOP_BASE_ADDR,
|
.regs = (void *)ANATOP_BASE_ADDR,
|
||||||
.fuse_bank = 1,
|
.fuse_bank = 1,
|
||||||
|
Reference in New Issue
Block a user