Correct SPL use of PANEL
This converts 1 usage of this option to the non-SPL form, since there is no SPL_PANEL defined in Kconfig Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
68be8d95de
commit
ba490b251c
1 changed files with 1 additions and 1 deletions
|
@ -615,7 +615,7 @@ static int ipuv3_video_probe(struct udevice *dev)
|
|||
if (ret < 0)
|
||||
return ret;
|
||||
#endif
|
||||
if (CONFIG_IS_ENABLED(PANEL)) {
|
||||
if (IS_ENABLED(CONFIG_PANEL)) {
|
||||
struct udevice *panel_dev;
|
||||
|
||||
ret = uclass_get_device(UCLASS_PANEL, 0, &panel_dev);
|
||||
|
|
Loading…
Reference in a new issue