mirror of
https://github.com/torvalds/linux.git
synced 2026-05-29 17:43:52 +02:00
panel/tpo-td043mtea1: Use refcounted allocation in place of devm_kzalloc()
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org> Signed-off-by: Anusha Srivatsa <asrivats@redhat.com> Link: https://lore.kernel.org/r/20250529-b4-drm_panel_mass_driver_convert_part3-v2-35-5d75a3711e40@redhat.com Signed-off-by: Maxime Ripard <mripard@kernel.org>
This commit is contained in:
parent
f6cefd33da
commit
e15e4ff477
|
|
@ -421,9 +421,10 @@ static int td043mtea1_probe(struct spi_device *spi)
|
|||
struct td043mtea1_panel *lcd;
|
||||
int ret;
|
||||
|
||||
lcd = devm_kzalloc(&spi->dev, sizeof(*lcd), GFP_KERNEL);
|
||||
if (lcd == NULL)
|
||||
return -ENOMEM;
|
||||
lcd = devm_drm_panel_alloc(&spi->dev, struct td043mtea1_panel, panel,
|
||||
&td043mtea1_funcs, DRM_MODE_CONNECTOR_DPI);
|
||||
if (IS_ERR(lcd))
|
||||
return PTR_ERR(lcd);
|
||||
|
||||
spi_set_drvdata(spi, lcd);
|
||||
lcd->spi = spi;
|
||||
|
|
@ -455,9 +456,6 @@ static int td043mtea1_probe(struct spi_device *spi)
|
|||
return ret;
|
||||
}
|
||||
|
||||
drm_panel_init(&lcd->panel, &lcd->spi->dev, &td043mtea1_funcs,
|
||||
DRM_MODE_CONNECTOR_DPI);
|
||||
|
||||
drm_panel_add(&lcd->panel);
|
||||
|
||||
return 0;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user