]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
media: saa7134: rc device does not need 'saa7134 IR (' prefix
authorSean Young <sean@mess.org>
Fri, 26 Oct 2018 15:13:25 +0000 (11:13 -0400)
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Thu, 22 Nov 2018 18:30:06 +0000 (13:30 -0500)
Before this patch, the rc name is truncated to:

saa7134 IR (Hauppauge WinTV-HVR

Now it is:

Hauppauge WinTV-HVR1150 ATSC/QAM-Hybrid

Signed-off-by: Sean Young <sean@mess.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
drivers/media/pci/saa7134/saa7134-input.c
drivers/media/pci/saa7134/saa7134.h

index 999b2774b220afb0269d2d1b08cc825b46201689..6e6d68964017a82d32bd59eacfaa4a5e0bcbd30e 100644 (file)
@@ -880,8 +880,6 @@ int saa7134_input_init1(struct saa7134_dev *dev)
        ir->raw_decode   = raw_decode;
 
        /* init input device */
-       snprintf(ir->name, sizeof(ir->name), "saa7134 IR (%s)",
-                saa7134_boards[dev->board].name);
        snprintf(ir->phys, sizeof(ir->phys), "pci-%s/ir0",
                 pci_name(dev->pci));
 
@@ -893,7 +891,7 @@ int saa7134_input_init1(struct saa7134_dev *dev)
                rc->allowed_protocols = RC_PROTO_BIT_ALL_IR_DECODER;
        }
 
-       rc->device_name = ir->name;
+       rc->device_name = saa7134_boards[dev->board].name;
        rc->input_phys = ir->phys;
        rc->input_id.bustype = BUS_PCI;
        rc->input_id.version = 1;
index 4802284560140ec1395b69daba439ef4bdf6ceb4..1c3f273f7dd213f1d24d1f99ab4f1ab86ae603b4 100644 (file)
@@ -123,7 +123,6 @@ struct saa7134_format {
 struct saa7134_card_ir {
        struct rc_dev           *dev;
 
-       char                    name[32];
        char                    phys[32];
        unsigned                users;