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: Daniel W. S. Almeida <dwlsalmeida@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
Родитель
707848ccdf
Коммит
0b8f1d4a09
|
@ -564,13 +564,13 @@ static void vidtv_bridge_dev_release(struct device *dev)
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct platform_device vidtv_bridge_dev = {
|
static struct platform_device vidtv_bridge_dev = {
|
||||||
.name = "vidtv_bridge",
|
.name = VIDTV_PDEV_NAME,
|
||||||
.dev.release = vidtv_bridge_dev_release,
|
.dev.release = vidtv_bridge_dev_release,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_driver vidtv_bridge_driver = {
|
static struct platform_driver vidtv_bridge_driver = {
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = "vidtv_bridge",
|
.name = VIDTV_PDEV_NAME,
|
||||||
},
|
},
|
||||||
.probe = vidtv_bridge_probe,
|
.probe = vidtv_bridge_probe,
|
||||||
.remove = vidtv_bridge_remove,
|
.remove = vidtv_bridge_remove,
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
* For now, only one frontend is supported. See vidtv_start_streaming()
|
* For now, only one frontend is supported. See vidtv_start_streaming()
|
||||||
*/
|
*/
|
||||||
#define NUM_FE 1
|
#define NUM_FE 1
|
||||||
|
#define VIDTV_PDEV_NAME "vidtv"
|
||||||
|
|
||||||
#include <linux/i2c.h>
|
#include <linux/i2c.h>
|
||||||
#include <linux/platform_device.h>
|
#include <linux/platform_device.h>
|
||||||
|
|
Загрузка…
Ссылка в новой задаче