]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
Bluetooth: btintel_pcie: Move model comment before its definition
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
Mon, 28 Jul 2025 18:05:14 +0000 (14:05 -0400)
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
Sat, 27 Sep 2025 15:37:00 +0000 (11:37 -0400)
This prevents the comments going over 80 columns which is still
required for Bluetooth code.

Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
drivers/bluetooth/btintel_pcie.c

index f7cf5a9033fcc82de1da579b4dc0c66acc962c73..ce17c5ea67e8a0aa2e82c54a15a18330ff83c5f2 100644 (file)
 
 /* Intel Bluetooth PCIe device id table */
 static const struct pci_device_id btintel_pcie_table[] = {
-       { BTINTEL_PCI_DEVICE(0x4D76, PCI_ANY_ID) }, /* BlazarI, Wildcat Lake */
-       { BTINTEL_PCI_DEVICE(0xA876, PCI_ANY_ID) }, /* BlazarI, Lunar Lake */
-       { BTINTEL_PCI_DEVICE(0xE376, PCI_ANY_ID) }, /* Scorpious, Panther Lake-H484 */
-       { BTINTEL_PCI_DEVICE(0xE476, PCI_ANY_ID) }, /* Scorpious, Panther Lake-H404 */
+       /* BlazarI, Wildcat Lake */
+       { BTINTEL_PCI_DEVICE(0x4D76, PCI_ANY_ID) },
+       /* BlazarI, Lunar Lake */
+       { BTINTEL_PCI_DEVICE(0xA876, PCI_ANY_ID) },
+       /* Scorpious, Panther Lake-H484 */
+       { BTINTEL_PCI_DEVICE(0xE376, PCI_ANY_ID) },
+        /* Scorpious, Panther Lake-H404 */
+       { BTINTEL_PCI_DEVICE(0xE476, PCI_ANY_ID) },
        { 0 }
 };
 MODULE_DEVICE_TABLE(pci, btintel_pcie_table);