media: rc-core: rename input_name to device_name
When an ir-spi is registered, you get this message. rc rc0: Unspecified device as /devices/platform/soc/3f215080.spi/spi_master/spi32766/spi32766.128/rc/rc0 "Unspecified device" refers to input_name, which makes no sense for IR TX only devices. So, rename to device_name. Also make driver_name const char* so that no casts are needed anywhere. Now ir-spi reports: rc rc0: IR SPI as /devices/platform/soc/3f215080.spi/spi_master/spi32766/spi32766.128/rc/rc0 Signed-off-by: Sean Young <sean@mess.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:

committed by
Mauro Carvalho Chehab

parent
db68102c8d
commit
518f4b26be
@@ -73,7 +73,7 @@ int sms_ir_init(struct smscore_device_t *coredev)
|
||||
strlcpy(coredev->ir.phys, coredev->devpath, sizeof(coredev->ir.phys));
|
||||
strlcat(coredev->ir.phys, "/ir0", sizeof(coredev->ir.phys));
|
||||
|
||||
dev->input_name = coredev->ir.name;
|
||||
dev->device_name = coredev->ir.name;
|
||||
dev->input_phys = coredev->ir.phys;
|
||||
dev->dev.parent = coredev->device;
|
||||
|
||||
@@ -91,7 +91,7 @@ int sms_ir_init(struct smscore_device_t *coredev)
|
||||
dev->driver_name = MODULE_NAME;
|
||||
|
||||
pr_debug("Input device (IR) %s is set for key events\n",
|
||||
dev->input_name);
|
||||
dev->device_name);
|
||||
|
||||
err = rc_register_device(dev);
|
||||
if (err < 0) {
|
||||
|
Reference in New Issue
Block a user