media: dtv5100: use the newer dvb-usb macros for USB device
authorMauro Carvalho Chehab <mchehab@kernel.org>
Mon, 28 Mar 2022 20:41:24 +0000 (22:41 +0200)
committerMauro Carvalho Chehab <mchehab@kernel.org>
Mon, 18 Apr 2022 05:36:43 +0000 (07:36 +0200)
In order to make the drivers under dvb-usb more homogeneous,
use the new macro.

Link: https://lore.kernel.org/linux-media/6e7183735aacf33fff86bc709a38aafb6b858dff.1648499509.git.mchehab@kernel.org
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
drivers/media/usb/dvb-usb/dtv5100.c

index b644c13..56c9d52 100644 (file)
@@ -162,10 +162,15 @@ static int dtv5100_probe(struct usb_interface *intf,
        return 0;
 }
 
+enum {
+       AME_DTV5100,
+};
+
 static struct usb_device_id dtv5100_table[] = {
-       { USB_DEVICE(USB_VID_AME, USB_PID_AME_DTV5100) },
-       { }             /* Terminating entry */
+       DVB_USB_DEV(AME, AME_DTV5100),
+       { }
 };
+
 MODULE_DEVICE_TABLE(usb, dtv5100_table);
 
 static struct dvb_usb_device_properties dtv5100_properties = {
@@ -201,7 +206,7 @@ static struct dvb_usb_device_properties dtv5100_properties = {
                {
                        .name = "AME DTV-5100 USB2.0 DVB-T",
                        .cold_ids = { NULL },
-                       .warm_ids = { &dtv5100_table[0], NULL },
+                       .warm_ids = { &dtv5100_table[AME_DTV5100], NULL },
                },
        }
 };