Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dff1c703 authored by Noralf Trønnes's avatar Noralf Trønnes
Browse files

drm/tinydrm: Use drm_fbdev_generic_setup()



Make full use of the generic fbdev client.

Cc: David Lechner <david@lechnology.com>
Signed-off-by: default avatarNoralf Trønnes <noralf@tronnes.org>
Reviewed-by: default avatarDavid Lechner <david@lechnology.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20180703160354.59955-8-noralf@tronnes.org
parent 9060d7f4
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -204,7 +204,7 @@ static int tinydrm_register(struct tinydrm_device *tdev)
	if (ret)
		return ret;

	ret = drm_fb_cma_fbdev_init_with_funcs(drm, 0, 0, tdev->fb_funcs);
	ret = drm_fbdev_generic_setup(drm, 0);
	if (ret)
		DRM_ERROR("Failed to initialize fbdev: %d\n", ret);

@@ -214,7 +214,6 @@ static int tinydrm_register(struct tinydrm_device *tdev)
static void tinydrm_unregister(struct tinydrm_device *tdev)
{
	drm_atomic_helper_shutdown(tdev->drm);
	drm_fb_cma_fbdev_fini(tdev->drm);
	drm_dev_unregister(tdev->drm);
}

+0 −1
Original line number Diff line number Diff line
@@ -368,7 +368,6 @@ static struct drm_driver ili9225_driver = {
				  DRIVER_ATOMIC,
	.fops			= &ili9225_fops,
	TINYDRM_GEM_DRIVER_OPS,
	.lastclose		= drm_fb_helper_lastclose,
	.name			= "ili9225",
	.desc			= "Ilitek ILI9225",
	.date			= "20171106",
+0 −1
Original line number Diff line number Diff line
@@ -145,7 +145,6 @@ static struct drm_driver ili9341_driver = {
	.driver_features	= DRIVER_GEM | DRIVER_MODESET | DRIVER_PRIME | DRIVER_ATOMIC,
	.fops			= &ili9341_fops,
	TINYDRM_GEM_DRIVER_OPS,
	.lastclose		= drm_fb_helper_lastclose,
	.debugfs_init		= mipi_dbi_debugfs_init,
	.name			= "ili9341",
	.desc			= "Ilitek ILI9341",
+0 −1
Original line number Diff line number Diff line
@@ -154,7 +154,6 @@ static struct drm_driver mi0283qt_driver = {
				  DRIVER_ATOMIC,
	.fops			= &mi0283qt_fops,
	TINYDRM_GEM_DRIVER_OPS,
	.lastclose		= drm_fb_helper_lastclose,
	.debugfs_init		= mipi_dbi_debugfs_init,
	.name			= "mi0283qt",
	.desc			= "Multi-Inno MI0283QT",
+0 −1
Original line number Diff line number Diff line
@@ -304,7 +304,6 @@ static struct drm_driver st7586_driver = {
				  DRIVER_ATOMIC,
	.fops			= &st7586_fops,
	TINYDRM_GEM_DRIVER_OPS,
	.lastclose		= drm_fb_helper_lastclose,
	.debugfs_init		= mipi_dbi_debugfs_init,
	.name			= "st7586",
	.desc			= "Sitronix ST7586",
Loading