Commit 0b8f1d4a authored by Daniel W. S. Almeida's avatar Daniel W. S. Almeida Committed by Mauro Carvalho Chehab
Browse files

media: vidtv: use a simpler name in platform_{device|driver}



Change from "vidtv_bridge" to simply "vidtv" so that vidtv looks
more similar to the other media virtual drivers in /sys/bus/platform.

Signed-off-by: default avatarDaniel W. S. Almeida <dwlsalmeida@gmail.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent 707848cc
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -564,13 +564,13 @@ static void vidtv_bridge_dev_release(struct device *dev)
}

static struct platform_device vidtv_bridge_dev = {
	.name		= "vidtv_bridge",
	.name		= VIDTV_PDEV_NAME,
	.dev.release	= vidtv_bridge_dev_release,
};

static struct platform_driver vidtv_bridge_driver = {
	.driver = {
		.name                = "vidtv_bridge",
		.name = VIDTV_PDEV_NAME,
	},
	.probe    = vidtv_bridge_probe,
	.remove   = vidtv_bridge_remove,
+1 −0
Original line number Diff line number Diff line
@@ -16,6 +16,7 @@
 * For now, only one frontend is supported. See vidtv_start_streaming()
 */
#define NUM_FE 1
#define VIDTV_PDEV_NAME "vidtv"

#include <linux/i2c.h>
#include <linux/platform_device.h>