media: rc-core: rename input_name to device_name
authorSean Young <sean@mess.org>
Sat, 1 Jul 2017 16:13:19 +0000 (12:13 -0400)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Sun, 20 Aug 2017 13:43:52 +0000 (09:43 -0400)
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>
47 files changed:
drivers/hid/hid-picolcd_cir.c
drivers/media/cec/cec-core.c
drivers/media/common/siano/smsir.c
drivers/media/i2c/ir-kbd-i2c.c
drivers/media/pci/bt8xx/bttv-input.c
drivers/media/pci/cx23885/cx23885-input.c
drivers/media/pci/cx88/cx88-input.c
drivers/media/pci/dm1105/dm1105.c
drivers/media/pci/mantis/mantis_common.h
drivers/media/pci/mantis/mantis_input.c
drivers/media/pci/saa7134/saa7134-input.c
drivers/media/pci/smipcie/smipcie-ir.c
drivers/media/pci/smipcie/smipcie.h
drivers/media/pci/ttpci/budget-ci.c
drivers/media/rc/ati_remote.c
drivers/media/rc/ene_ir.c
drivers/media/rc/fintek-cir.c
drivers/media/rc/gpio-ir-recv.c
drivers/media/rc/igorplugusb.c
drivers/media/rc/iguanair.c
drivers/media/rc/img-ir/img-ir-hw.c
drivers/media/rc/img-ir/img-ir-raw.c
drivers/media/rc/imon.c
drivers/media/rc/ir-hix5hd2.c
drivers/media/rc/ir-spi.c
drivers/media/rc/ite-cir.c
drivers/media/rc/mceusb.c
drivers/media/rc/meson-ir.c
drivers/media/rc/mtk-cir.c
drivers/media/rc/nuvoton-cir.c
drivers/media/rc/rc-loopback.c
drivers/media/rc/rc-main.c
drivers/media/rc/redrat3.c
drivers/media/rc/serial_ir.c
drivers/media/rc/sir_ir.c
drivers/media/rc/st_rc.c
drivers/media/rc/streamzap.c
drivers/media/rc/sunxi-cir.c
drivers/media/rc/ttusbir.c
drivers/media/rc/winbond-cir.c
drivers/media/usb/au0828/au0828-input.c
drivers/media/usb/dvb-usb-v2/dvb_usb_core.c
drivers/media/usb/dvb-usb/dvb-usb-remote.c
drivers/media/usb/em28xx/em28xx-input.c
drivers/media/usb/tm6000/tm6000-input.c
include/media/cec.h
include/media/rc-core.h

index 8ffbb6f65a65a4befda7b2a1257400cab31c6e8b..b3b2233f3c6577146800905b984a17eace842a19 100644 (file)
@@ -116,7 +116,7 @@ int picolcd_init_cir(struct picolcd_data *data, struct hid_report *report)
        rdev->allowed_protocols = RC_BIT_ALL_IR_DECODER;
        rdev->open             = picolcd_cir_open;
        rdev->close            = picolcd_cir_close;
-       rdev->input_name       = data->hdev->name;
+       rdev->device_name      = data->hdev->name;
        rdev->input_phys       = data->hdev->phys;
        rdev->input_id.bustype = data->hdev->bus;
        rdev->input_id.vendor  = data->hdev->vendor;
index 52f085ba104a2eb4c0ab95649141ce03e1334387..efb7bbbc941fe749b0b7e0bd2ac8ed9e462870d5 100644 (file)
@@ -263,12 +263,12 @@ struct cec_adapter *cec_allocate_adapter(const struct cec_adap_ops *ops,
                return ERR_PTR(-ENOMEM);
        }
 
-       snprintf(adap->input_name, sizeof(adap->input_name),
+       snprintf(adap->device_name, sizeof(adap->device_name),
                 "RC for %s", name);
        snprintf(adap->input_phys, sizeof(adap->input_phys),
                 "%s/input0", name);
 
-       adap->rc->input_name = adap->input_name;
+       adap->rc->device_name = adap->device_name;
        adap->rc->input_phys = adap->input_phys;
        adap->rc->input_id.bustype = BUS_CEC;
        adap->rc->input_id.vendor = 0;
index 7c898b06d85c33ddcb92cfce60b22e7208e8b343..941c342896cc64e1e9b19be887a82ea54117068b 100644 (file)
@@ -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) {
index cee7fd9cf08b3fe1704902a9959392277d9c04ca..af909bf5dd5bc5f45b7bb9f7eb7758bebe040a6c 100644 (file)
@@ -452,7 +452,7 @@ static int ir_probe(struct i2c_client *client, const struct i2c_device_id *id)
         */
        rc->input_id.bustype = BUS_I2C;
        rc->input_phys       = ir->phys;
-       rc->input_name       = ir->name;
+       rc->device_name      = ir->name;
 
        /*
         * Initialize the other fields of rc_dev
index 2fd07a8afcd2500d641d72031075f5aebea151e2..bb8eda51ee274357338f414430126b0e7122ada4 100644 (file)
@@ -535,7 +535,7 @@ int bttv_input_init(struct bttv *btv)
        snprintf(ir->phys, sizeof(ir->phys), "pci-%s/ir0",
                 pci_name(btv->c.pci));
 
-       rc->input_name = ir->name;
+       rc->device_name = ir->name;
        rc->input_phys = ir->phys;
        rc->input_id.bustype = BUS_PCI;
        rc->input_id.version = 1;
index 4367cb3162b659e9018ece20c39ba51979a321d2..c9b8e3f4d9fb2f2764d9e808e0b27f0deba152b1 100644 (file)
@@ -351,7 +351,7 @@ int cx23885_input_init(struct cx23885_dev *dev)
        }
 
        kernel_ir->rc = rc;
-       rc->input_name = kernel_ir->name;
+       rc->device_name = kernel_ir->name;
        rc->input_phys = kernel_ir->phys;
        rc->input_id.bustype = BUS_PCI;
        rc->input_id.version = 1;
index 01f2e472a2a09c9ba0bfd8b0d5bdb61f218c343f..a5dbee77645531381616ef7dd5aa81a75e86d8a0 100644 (file)
@@ -464,7 +464,7 @@ int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci)
        snprintf(ir->name, sizeof(ir->name), "cx88 IR (%s)", core->board.name);
        snprintf(ir->phys, sizeof(ir->phys), "pci-%s/ir0", pci_name(pci));
 
-       dev->input_name = ir->name;
+       dev->device_name = ir->name;
        dev->input_phys = ir->phys;
        dev->input_id.bustype = BUS_PCI;
        dev->input_id.version = 1;
index 190ca9c17237ab16a81de431fb68b369000ab5b6..0bc618f36385b61718b2c753b69f8ffbd16ea840 100644 (file)
@@ -748,7 +748,7 @@ static int dm1105_ir_init(struct dm1105_dev *dm1105)
 
        dev->driver_name = MODULE_NAME;
        dev->map_name = RC_MAP_DM1105_NEC;
-       dev->input_name = "DVB on-card IR receiver";
+       dev->device_name = "DVB on-card IR receiver";
        dev->input_phys = dm1105->ir.input_phys;
        dev->input_id.bustype = BUS_PCI;
        dev->input_id.version = 1;
index d48778a366a9cc36b04fdeca195ff1ca0578f7fa..a664c319ef0a0b7cb84683517e1d589c023d95f1 100644 (file)
@@ -176,7 +176,7 @@ struct mantis_pci {
        struct work_struct      uart_work;
 
        struct rc_dev           *rc;
-       char                    input_name[80];
+       char                    device_name[80];
        char                    input_phys[80];
        char                    *rc_map_name;
 };
index 50d10cb7d49de0fd5222fdf28d55fd3839440f09..001b7f82769921e59cecd5530826daeab93172ab 100644 (file)
@@ -46,12 +46,12 @@ int mantis_input_init(struct mantis_pci *mantis)
                goto out;
        }
 
-       snprintf(mantis->input_name, sizeof(mantis->input_name),
+       snprintf(mantis->device_name, sizeof(mantis->device_name),
                 "Mantis %s IR receiver", mantis->hwconfig->model_name);
        snprintf(mantis->input_phys, sizeof(mantis->input_phys),
                 "pci-%s/ir0", pci_name(mantis->pdev));
 
-       dev->input_name         = mantis->input_name;
+       dev->device_name        = mantis->device_name;
        dev->input_phys         = mantis->input_phys;
        dev->input_id.bustype   = BUS_PCI;
        dev->input_id.vendor    = mantis->vendor_id;
index 78849c19f68a97232c3fb02d549196c77e3937e8..ba1fc77a6f7b25f9fafd9e170be9e6b78a78d8b0 100644 (file)
@@ -870,7 +870,7 @@ int saa7134_input_init1(struct saa7134_dev *dev)
        if (raw_decode)
                rc->driver_type = RC_DRIVER_IR_RAW;
 
-       rc->input_name = ir->name;
+       rc->device_name = ir->name;
        rc->input_phys = ir->phys;
        rc->input_id.bustype = BUS_PCI;
        rc->input_id.version = 1;
index d2730c3fdbae5b60ae22a7fc8ac6af1ceb4ecbbc..fc3375720a356e35d53a33c698f8927b5623dac2 100644 (file)
@@ -188,14 +188,14 @@ int smi_ir_init(struct smi_dev *dev)
                return -ENOMEM;
 
        /* init input device */
-       snprintf(ir->input_name, sizeof(ir->input_name), "IR (%s)",
+       snprintf(ir->device_name, sizeof(ir->device_name), "IR (%s)",
                 dev->info->name);
        snprintf(ir->input_phys, sizeof(ir->input_phys), "pci-%s/ir0",
                 pci_name(dev->pci_dev));
 
        rc_dev->driver_name = "SMI_PCIe";
        rc_dev->input_phys = ir->input_phys;
-       rc_dev->input_name = ir->input_name;
+       rc_dev->device_name = ir->device_name;
        rc_dev->input_id.bustype = BUS_PCI;
        rc_dev->input_id.version = 1;
        rc_dev->input_id.vendor = dev->pci_dev->subsystem_vendor;
index 611e4f02caddd7f62380fded0f8b2133e45b0cf6..c8368c78ddd513ef7ec6b1c644edf96657cad049 100644 (file)
@@ -240,7 +240,7 @@ struct smi_rc {
        struct smi_dev *dev;
        struct rc_dev *rc_dev;
        char input_phys[64];
-       char input_name[64];
+       char device_name[64];
        struct work_struct work;
        u8 irData[256];
 
index 5b8aab4c7b815a4243b40f619330d8095aa0e9df..cf185c83cc9ec90dfa548f3d2cea998bcc23ce4e 100644 (file)
@@ -186,7 +186,7 @@ static int msp430_ir_init(struct budget_ci *budget_ci)
                 "pci-%s/ir0", pci_name(saa->pci));
 
        dev->driver_name = MODULE_NAME;
-       dev->input_name = budget_ci->ir.name;
+       dev->device_name = budget_ci->ir.name;
        dev->input_phys = budget_ci->ir.phys;
        dev->input_id.bustype = BUS_PCI;
        dev->input_id.version = 1;
index a4c6ad4f67c19f7b3dc5acb8f3f6a4149952b970..a7f76002b30a03e81e041be17c95c827214592d8 100644 (file)
@@ -766,7 +766,7 @@ static void ati_remote_rc_init(struct ati_remote *ati_remote)
        rdev->open = ati_remote_rc_open;
        rdev->close = ati_remote_rc_close;
 
-       rdev->input_name = ati_remote->rc_name;
+       rdev->device_name = ati_remote->rc_name;
        rdev->input_phys = ati_remote->rc_phys;
 
        usb_to_input_id(ati_remote->udev, &rdev->input_id);
index 60da963f40dca448b0cab7269de5e11724fa6a03..41f6b1c5240791a30472f32882e12f5377bc4389 100644 (file)
@@ -1060,7 +1060,7 @@ static int ene_probe(struct pnp_dev *pnp_dev, const struct pnp_device_id *id)
        rdev->s_idle = ene_set_idle;
        rdev->driver_name = ENE_DRIVER_NAME;
        rdev->map_name = RC_MAP_RC6_MCE;
-       rdev->input_name = "ENE eHome Infrared Remote Receiver";
+       rdev->device_name = "ENE eHome Infrared Remote Receiver";
 
        if (dev->hw_learning_and_tx_capable) {
                rdev->s_learning_mode = ene_set_learning_mode;
@@ -1070,7 +1070,7 @@ static int ene_probe(struct pnp_dev *pnp_dev, const struct pnp_device_id *id)
                rdev->s_tx_carrier = ene_set_tx_carrier;
                rdev->s_tx_duty_cycle = ene_set_tx_duty_cycle;
                rdev->s_carrier_report = ene_set_carrier_report;
-               rdev->input_name = "ENE eHome Infrared Remote Transceiver";
+               rdev->device_name = "ENE eHome Infrared Remote Transceiver";
        }
 
        dev->rdev = rdev;
index 0d3562712f273c968653b95aa5a0dc772a176391..57155e4c9f381dcdbf7e70d2c37db6136ae9b6f2 100644 (file)
@@ -532,7 +532,7 @@ static int fintek_probe(struct pnp_dev *pdev, const struct pnp_device_id *dev_id
        rdev->allowed_protocols = RC_BIT_ALL_IR_DECODER;
        rdev->open = fintek_open;
        rdev->close = fintek_close;
-       rdev->input_name = FINTEK_DESCRIPTION;
+       rdev->device_name = FINTEK_DESCRIPTION;
        rdev->input_phys = "fintek/cir0";
        rdev->input_id.bustype = BUS_HOST;
        rdev->input_id.vendor = VENDOR_ID_FINTEK;
index b4f773b9dc1d5004e6e3073420bd98fb73f96fbd..561c27a4be64671535b6c540dc44e2790796fadf 100644 (file)
@@ -150,7 +150,7 @@ static int gpio_ir_recv_probe(struct platform_device *pdev)
        }
 
        rcdev->priv = gpio_dev;
-       rcdev->input_name = GPIO_IR_DEVICE_NAME;
+       rcdev->device_name = GPIO_IR_DEVICE_NAME;
        rcdev->input_phys = GPIO_IR_DEVICE_NAME "/input0";
        rcdev->input_id.bustype = BUS_HOST;
        rcdev->input_id.vendor = 0x0001;
index cb6d4f1247da5524c01241d4e056ee8f85d3a8e6..5babc6371df40881aee95fa36954304b1fd59356 100644 (file)
@@ -194,7 +194,7 @@ static int igorplugusb_probe(struct usb_interface *intf,
        if (!rc)
                goto fail;
 
-       rc->input_name = DRIVER_DESC;
+       rc->device_name = DRIVER_DESC;
        rc->input_phys = ir->phys;
        usb_to_input_id(udev, &rc->input_id);
        rc->dev.parent = &intf->dev;
index 8711a7ff55cccc2f262958a03e8575672e9d0dce..4357dd36d7b93cb0ada4843a92af02405f1940b9 100644 (file)
@@ -487,7 +487,7 @@ static int iguanair_probe(struct usb_interface *intf,
 
        usb_make_path(ir->udev, ir->phys, sizeof(ir->phys));
 
-       rc->input_name = ir->name;
+       rc->device_name = ir->name;
        rc->input_phys = ir->phys;
        usb_to_input_id(ir->udev, &rc->input_id);
        rc->dev.parent = &intf->dev;
index 8d14396225335ad73e2692f79378beffba5edf01..dd46973e0cbf09ced924b8363293e1bd12b76f71 100644 (file)
@@ -1083,7 +1083,7 @@ int img_ir_probe_hw(struct img_ir_priv *priv)
        rdev->priv = priv;
        rdev->map_name = RC_MAP_EMPTY;
        rdev->allowed_protocols = img_ir_allowed_protos(priv);
-       rdev->input_name = "IMG Infrared Decoder";
+       rdev->device_name = "IMG Infrared Decoder";
        rdev->s_filter = img_ir_set_normal_filter;
        rdev->s_wakeup_filter = img_ir_set_wakeup_filter;
 
index 8d2f8e2006e7bdce9ade9bc9fd3cb144d4d84126..7f23a863310c2b03c6b5e53e32dfe83fbcb04593 100644 (file)
@@ -117,7 +117,7 @@ int img_ir_probe_raw(struct img_ir_priv *priv)
        }
        rdev->priv = priv;
        rdev->map_name = RC_MAP_EMPTY;
-       rdev->input_name = "IMG Infrared Decoder Raw";
+       rdev->device_name = "IMG Infrared Decoder Raw";
 
        /* Register raw decoder */
        error = rc_register_device(rdev);
index 717ba782d7a7eca9bbd547ba68cd586e415b3a10..ab560fdaae7c18c02d5b8170db28c0fce98de561 100644 (file)
@@ -2063,7 +2063,7 @@ static struct rc_dev *imon_init_rdev(struct imon_context *ictx)
                      sizeof(ictx->phys_rdev));
        strlcat(ictx->phys_rdev, "/input0", sizeof(ictx->phys_rdev));
 
-       rdev->input_name = ictx->name_rdev;
+       rdev->device_name = ictx->name_rdev;
        rdev->input_phys = ictx->phys_rdev;
        usb_to_input_id(ictx->usbdev_intf0, &rdev->input_id);
        rdev->dev.parent = ictx->dev;
index 50951f68685275985515c49841c5402141db006f..0e639fb6f7b90e2056089bfc1117c0f55d4a9369 100644 (file)
@@ -249,7 +249,7 @@ static int hix5hd2_ir_probe(struct platform_device *pdev)
        rdev->driver_name = IR_HIX5HD2_NAME;
        map_name = of_get_property(node, "linux,rc-map-name", NULL);
        rdev->map_name = map_name ?: RC_MAP_EMPTY;
-       rdev->input_name = IR_HIX5HD2_NAME;
+       rdev->device_name = IR_HIX5HD2_NAME;
        rdev->input_phys = IR_HIX5HD2_NAME "/input0";
        rdev->input_id.bustype = BUS_HOST;
        rdev->input_id.vendor = 0x0001;
index 7e383b3fedd5696949c5eb07b4dcf2dcec91d5e8..29ed0638cb74a0998454e05a32c42a2a4d56a0f3 100644 (file)
@@ -155,6 +155,7 @@ static int ir_spi_probe(struct spi_device *spi)
        idata->rc->tx_ir           = ir_spi_tx;
        idata->rc->s_tx_carrier    = ir_spi_set_tx_carrier;
        idata->rc->s_tx_duty_cycle = ir_spi_set_duty_cycle;
+       idata->rc->device_name     = "IR SPI";
        idata->rc->driver_name     = IR_SPI_DRIVER_NAME;
        idata->rc->priv            = idata;
        idata->spi                 = spi;
index e9e4befbbebb8126220f02e79e9278e69b23fe5a..c8eea30b4e50b74179ecae07ffe9c970680407e9 100644 (file)
@@ -1576,7 +1576,7 @@ static int ite_probe(struct pnp_dev *pdev, const struct pnp_device_id
                rdev->s_tx_duty_cycle = ite_set_tx_duty_cycle;
        }
 
-       rdev->input_name = dev_desc->model;
+       rdev->device_name = dev_desc->model;
        rdev->input_id.bustype = BUS_HOST;
        rdev->input_id.vendor = PCI_VENDOR_ID_ITE;
        rdev->input_id.product = 0;
index eb130694bbb893d567728e311828685336a35242..d9c7bbd25253a1e10fd7c5003549927d27181c20 100644 (file)
@@ -1264,7 +1264,7 @@ static struct rc_dev *mceusb_init_rc_dev(struct mceusb_dev *ir)
 
        usb_make_path(ir->usbdev, ir->phys, sizeof(ir->phys));
 
-       rc->input_name = ir->name;
+       rc->device_name = ir->name;
        rc->input_phys = ir->phys;
        usb_to_input_id(ir->usbdev, &rc->input_id);
        rc->dev.parent = dev;
index 65566d569cb13bafe7335f2ac88e40079c1ef829..dfe3da487be034cbe72d4283fe7f5c1242951893 100644 (file)
@@ -138,7 +138,7 @@ static int meson_ir_probe(struct platform_device *pdev)
        }
 
        ir->rc->priv = ir;
-       ir->rc->input_name = DRIVER_NAME;
+       ir->rc->device_name = DRIVER_NAME;
        ir->rc->input_phys = DRIVER_NAME "/input0";
        ir->rc->input_id.bustype = BUS_HOST;
        map_name = of_get_property(node, "linux,rc-map-name", NULL);
index 667277205feea0504100cb309d8cf75a5bc03f9c..da4461fabce6f300b24368490544154b2228b71b 100644 (file)
@@ -343,7 +343,7 @@ static int mtk_ir_probe(struct platform_device *pdev)
        }
 
        ir->rc->priv = ir;
-       ir->rc->input_name = MTK_IR_DEV;
+       ir->rc->device_name = MTK_IR_DEV;
        ir->rc->input_phys = MTK_IR_DEV "/input0";
        ir->rc->input_id.bustype = BUS_HOST;
        ir->rc->input_id.vendor = 0x0001;
index ec4b25bd2ec29912f062ae1b654a5ac05434b6f7..c44f723081cb3da5a2dcfff644ef8e79d79e9844 100644 (file)
@@ -1134,7 +1134,7 @@ static int nvt_probe(struct pnp_dev *pdev, const struct pnp_device_id *dev_id)
        rdev->tx_ir = nvt_tx_ir;
        rdev->s_tx_carrier = nvt_set_tx_carrier;
        rdev->s_wakeup_filter = nvt_ir_raw_set_wakeup_filter;
-       rdev->input_name = "Nuvoton w836x7hg Infrared Remote Transceiver";
+       rdev->device_name = "Nuvoton w836x7hg Infrared Remote Transceiver";
        rdev->input_phys = "nuvoton/cir0";
        rdev->input_id.bustype = BUS_HOST;
        rdev->input_id.vendor = PCI_VENDOR_ID_WINBOND2;
index 62195af24fbe7769a8d806454a15329eb72fa8da..46cc9c29d68a6fe7b6107676b6ae0b722bfca5c4 100644 (file)
@@ -219,7 +219,7 @@ static int __init loop_init(void)
                return -ENOMEM;
        }
 
-       rc->input_name          = "rc-core loopback device";
+       rc->device_name         = "rc-core loopback device";
        rc->input_phys          = "rc-core/virtual";
        rc->input_id.bustype    = BUS_VIRTUAL;
        rc->input_id.version    = 1;
index 33c04ccccdff82c635647b348d3f9ef6a3c90de3..f306e67b8b660957951e2f549b2f0c31035a99e7 100644 (file)
@@ -530,7 +530,7 @@ u32 rc_g_keycode_from_table(struct rc_dev *dev, u32 scancode)
 
        if (keycode != KEY_RESERVED)
                IR_dprintk(1, "%s: scancode 0x%04x keycode 0x%02x\n",
-                          dev->input_name, scancode, keycode);
+                          dev->device_name, scancode, keycode);
 
        return keycode;
 }
@@ -663,7 +663,7 @@ static void ir_do_keydown(struct rc_dev *dev, enum rc_type protocol,
                dev->last_keycode = keycode;
 
                IR_dprintk(1, "%s: key down event, key 0x%04x, protocol 0x%04x, scancode 0x%08x\n",
-                          dev->input_name, keycode, protocol, scancode);
+                          dev->device_name, keycode, protocol, scancode);
                input_report_key(dev->input_dev, keycode, 1);
 
                led_trigger_event(led_feedback, LED_FULL);
@@ -1663,7 +1663,7 @@ static int rc_prepare_rx_device(struct rc_dev *dev)
        dev->input_dev->dev.parent = &dev->dev;
        memcpy(&dev->input_dev->id, &dev->input_id, sizeof(dev->input_id));
        dev->input_dev->phys = dev->input_phys;
-       dev->input_dev->name = dev->input_name;
+       dev->input_dev->name = dev->device_name;
 
        return 0;
 
@@ -1759,7 +1759,7 @@ int rc_register_device(struct rc_dev *dev)
 
        path = kobject_get_path(&dev->dev.kobj, GFP_KERNEL);
        dev_info(&dev->dev, "%s as %s\n",
-               dev->input_name ?: "Unspecified device", path ?: "N/A");
+                dev->device_name ?: "Unspecified device", path ?: "N/A");
        kfree(path);
 
        if (dev->driver_type != RC_DRIVER_IR_RAW_TX) {
index 56d43be2756b8c645e633cd9b03f6729a387a982..29fa37b9955380fccd9297c7aa9da528fe49042a 100644 (file)
@@ -951,7 +951,7 @@ static struct rc_dev *redrat3_init_rc_dev(struct redrat3_dev *rr3)
 
        usb_make_path(rr3->udev, rr3->phys, sizeof(rr3->phys));
 
-       rc->input_name = rr3->name;
+       rc->device_name = rr3->name;
        rc->input_phys = rr3->phys;
        usb_to_input_id(rr3->udev, &rc->input_id);
        rc->dev.parent = dev;
index 77d5d4cbed0a06fcb316c0fb2d6c59a470c3f585..9a5e9fa01196bd5ef5222093d08a47063baafcb4 100644 (file)
@@ -513,19 +513,19 @@ static int serial_ir_probe(struct platform_device *dev)
 
        switch (type) {
        case IR_HOMEBREW:
-               rcdev->input_name = "Serial IR type home-brew";
+               rcdev->device_name = "Serial IR type home-brew";
                break;
        case IR_IRDEO:
-               rcdev->input_name = "Serial IR type IRdeo";
+               rcdev->device_name = "Serial IR type IRdeo";
                break;
        case IR_IRDEO_REMOTE:
-               rcdev->input_name = "Serial IR type IRdeo remote";
+               rcdev->device_name = "Serial IR type IRdeo remote";
                break;
        case IR_ANIMAX:
-               rcdev->input_name = "Serial IR type AnimaX";
+               rcdev->device_name = "Serial IR type AnimaX";
                break;
        case IR_IGOR:
-               rcdev->input_name = "Serial IR type IgorPlug";
+               rcdev->device_name = "Serial IR type IgorPlug";
                break;
        }
 
index be67f7c9a75bccebd63884897a060d1155888273..83b4410664aff23b4149928bb1b0c972a2d1bd10 100644 (file)
@@ -308,7 +308,7 @@ static int sir_ir_probe(struct platform_device *dev)
        if (!rcdev)
                return -ENOMEM;
 
-       rcdev->input_name = "SIR IrDA port";
+       rcdev->device_name = "SIR IrDA port";
        rcdev->input_phys = KBUILD_MODNAME "/input0";
        rcdev->input_id.bustype = BUS_HOST;
        rcdev->input_id.vendor = 0x0001;
index a08e1dd061249118fc980da025760a7d7dff3018..272de9c8a9f68b5e231289689339403def59689b 100644 (file)
@@ -299,7 +299,7 @@ static int st_rc_probe(struct platform_device *pdev)
        rdev->close = st_rc_close;
        rdev->driver_name = IR_ST_NAME;
        rdev->map_name = RC_MAP_EMPTY;
-       rdev->input_name = "ST Remote Control Receiver";
+       rdev->device_name = "ST Remote Control Receiver";
 
        ret = rc_register_device(rdev);
        if (ret < 0)
index b09c45abb5f3280d2b2c474ea49528bf9333e35f..829f2b348a46dbc6bfaf111c673154ee9f2eaf30 100644 (file)
@@ -299,7 +299,7 @@ static struct rc_dev *streamzap_init_rc_dev(struct streamzap_ir *sz)
        usb_make_path(sz->usbdev, sz->phys, sizeof(sz->phys));
        strlcat(sz->phys, "/input0", sizeof(sz->phys));
 
-       rdev->input_name = sz->name;
+       rdev->device_name = sz->name;
        rdev->input_phys = sz->phys;
        usb_to_input_id(sz->usbdev, &rdev->input_id);
        rdev->dev.parent = dev;
index 4b785dd775c11be7512195b7a2258f3eca357cef..87933eb14205c26aec499b90d1e040c3ae991aa6 100644 (file)
@@ -215,7 +215,7 @@ static int sunxi_ir_probe(struct platform_device *pdev)
        }
 
        ir->rc->priv = ir;
-       ir->rc->input_name = SUNXI_IR_DEV;
+       ir->rc->device_name = SUNXI_IR_DEV;
        ir->rc->input_phys = "sunxi-ir/input0";
        ir->rc->input_id.bustype = BUS_HOST;
        ir->rc->input_id.vendor = 0x0001;
index 23be7702e2dfbf0ee4989cb968ed81288aef68cd..5002a91e830ee53482e8539921fab1bbbd6da968 100644 (file)
@@ -309,7 +309,7 @@ static int ttusbir_probe(struct usb_interface *intf,
 
        usb_make_path(tt->udev, tt->phys, sizeof(tt->phys));
 
-       rc->input_name = DRIVER_DESC;
+       rc->device_name = DRIVER_DESC;
        rc->input_phys = tt->phys;
        usb_to_input_id(tt->udev, &rc->input_id);
        rc->dev.parent = &intf->dev;
index 5a4d4a61119715500963ce46019e8d88d2558f91..ea7be6d35ff8140ad383d55a225a003b471b1a28 100644 (file)
@@ -1068,7 +1068,7 @@ wbcir_probe(struct pnp_dev *device, const struct pnp_device_id *dev_id)
        }
 
        data->dev->driver_name = DRVNAME;
-       data->dev->input_name = WBCIR_NAME;
+       data->dev->device_name = WBCIR_NAME;
        data->dev->input_phys = "wbcir/cir0";
        data->dev->input_id.bustype = BUS_HOST;
        data->dev->input_id.vendor = PCI_VENDOR_ID_WINBOND;
index 9d82ec0a4b6409a0e445b653758bba6762242533..9ae42ebefa8ae688695f8a5004cca52673a5de98 100644 (file)
@@ -335,7 +335,7 @@ int au0828_rc_register(struct au0828_dev *dev)
        usb_make_path(dev->usbdev, ir->phys, sizeof(ir->phys));
        strlcat(ir->phys, "/input0", sizeof(ir->phys));
 
-       rc->input_name = ir->name;
+       rc->device_name = ir->name;
        rc->input_phys = ir->phys;
        rc->input_id.bustype = BUS_USB;
        rc->input_id.version = 1;
index 955fb0d075070a2ee62b0afa698268049fd90f09..096bb75a24e52351e919e65262399a065f08a6b1 100644 (file)
@@ -154,13 +154,12 @@ static int dvb_usbv2_remote_init(struct dvb_usb_device *d)
        }
 
        dev->dev.parent = &d->udev->dev;
-       dev->input_name = d->name;
+       dev->device_name = d->name;
        usb_make_path(d->udev, d->rc_phys, sizeof(d->rc_phys));
        strlcat(d->rc_phys, "/ir0", sizeof(d->rc_phys));
        dev->input_phys = d->rc_phys;
        usb_to_input_id(d->udev, &dev->input_id);
-       /* TODO: likely RC-core should took const char * */
-       dev->driver_name = (char *) d->props->driver_name;
+       dev->driver_name = d->props->driver_name;
        dev->map_name = d->rc.map_name;
        dev->allowed_protocols = d->rc.allowed_protos;
        dev->change_protocol = d->rc.change_protocol;
index f05f1fc80729228a82c16f675f8615aa76c7e16a..0b03f9bd9c2673891980b8bbf2abe0b333e9c31e 100644 (file)
@@ -279,7 +279,7 @@ static int rc_core_dvb_usb_remote_init(struct dvb_usb_device *d)
        dev->change_protocol = d->props.rc.core.change_protocol;
        dev->allowed_protocols = d->props.rc.core.allowed_protos;
        usb_to_input_id(d->udev, &dev->input_id);
-       dev->input_name = "IR-receiver inside an USB DVB receiver";
+       dev->device_name = "IR-receiver inside an USB DVB receiver";
        dev->input_phys = d->rc_phys;
        dev->dev.parent = &d->udev->dev;
        dev->priv = d;
index ca9673917ad5a74b6a2321b330ff6e17099a73a9..d8746b96a0f851f84034ed6200799e3886e307a2 100644 (file)
@@ -807,7 +807,7 @@ static int em28xx_ir_init(struct em28xx *dev)
        usb_make_path(udev, ir->phys, sizeof(ir->phys));
        strlcat(ir->phys, "/input0", sizeof(ir->phys));
 
-       rc->input_name = ir->name;
+       rc->device_name = ir->name;
        rc->input_phys = ir->phys;
        rc->input_id.bustype = BUS_USB;
        rc->input_id.version = 1;
index 1a033f57fcc1bf770ef504216545f3176774f206..83e33aef01057a90827704303970c63dff3a2d96 100644 (file)
@@ -458,7 +458,7 @@ int tm6000_ir_init(struct tm6000_core *dev)
        rc_type = RC_BIT_UNKNOWN;
        tm6000_ir_change_protocol(rc, &rc_type);
 
-       rc->input_name = ir->name;
+       rc->device_name = ir->name;
        rc->input_phys = ir->phys;
        rc->input_id.bustype = BUS_USB;
        rc->input_id.version = 1;
index 224359c9941a9a805a172891b00a87e5b4fa62af..d97aa6c32abd638f92e9407118e62aa70a020ba8 100644 (file)
@@ -203,7 +203,7 @@ struct cec_adapter {
        u16 phys_addrs[15];
        u32 sequence;
 
-       char input_name[32];
+       char device_name[32];
        char input_phys[32];
        char input_drv[32];
 };
index 78dea39a9b39040523231dda53db39f942fcedfe..16bd89caa22ddec1276582c7b39a576a023233ac 100644 (file)
@@ -72,7 +72,7 @@ enum rc_filter_type {
  * @dev: driver model's view of this device
  * @managed_alloc: devm_rc_allocate_device was used to create rc_dev
  * @sysfs_groups: sysfs attribute groups
- * @input_name: name of the input child device
+ * @device_name: name of the rc child device
  * @input_phys: physical path to the input child device
  * @input_id: id of the input child device (struct input_id)
  * @driver_name: name of the hardware driver which registered this device
@@ -138,10 +138,10 @@ struct rc_dev {
        struct device                   dev;
        bool                            managed_alloc;
        const struct attribute_group    *sysfs_groups[5];
-       const char                      *input_name;
+       const char                      *device_name;
        const char                      *input_phys;
        struct input_id                 input_id;
-       char                            *driver_name;
+       const char                      *driver_name;
        const char                      *map_name;
        struct rc_map                   rc_map;
        struct mutex                    lock;