Re: [PATCH 2/5] video: sunxi: dw-hdmi: Probe driver by compatible

2022-12-03 Thread Andre Przywara
On Mon, 28 Nov 2022 01:02:25 -0600 Samuel Holland wrote: > From: Jernej Skrabec > > Currently the sunxi dw-hdmi driver is probed unconditionally, > even if there is no such device. > > Switch the driver to probing via a compatible string. This brings many > benefits; the driver is only probed

[PATCH 2/5] video: sunxi: dw-hdmi: Probe driver by compatible

2022-11-27 Thread Samuel Holland
From: Jernej Skrabec Currently the sunxi dw-hdmi driver is probed unconditionally, even if there is no such device. Switch the driver to probing via a compatible string. This brings many benefits; the driver is only probed when needed, and now it can read the DT node. Signed-off-by: Jernej Skra