Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Bluetooth: btintel_pcie: Move model comment before its definition

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>

+8 -4
+8 -4
drivers/bluetooth/btintel_pcie.c
··· 35 35 36 36 /* Intel Bluetooth PCIe device id table */ 37 37 static const struct pci_device_id btintel_pcie_table[] = { 38 - { BTINTEL_PCI_DEVICE(0x4D76, PCI_ANY_ID) }, /* BlazarI, Wildcat Lake */ 39 - { BTINTEL_PCI_DEVICE(0xA876, PCI_ANY_ID) }, /* BlazarI, Lunar Lake */ 40 - { BTINTEL_PCI_DEVICE(0xE376, PCI_ANY_ID) }, /* Scorpious, Panther Lake-H484 */ 41 - { BTINTEL_PCI_DEVICE(0xE476, PCI_ANY_ID) }, /* Scorpious, Panther Lake-H404 */ 38 + /* BlazarI, Wildcat Lake */ 39 + { BTINTEL_PCI_DEVICE(0x4D76, PCI_ANY_ID) }, 40 + /* BlazarI, Lunar Lake */ 41 + { BTINTEL_PCI_DEVICE(0xA876, PCI_ANY_ID) }, 42 + /* Scorpious, Panther Lake-H484 */ 43 + { BTINTEL_PCI_DEVICE(0xE376, PCI_ANY_ID) }, 44 + /* Scorpious, Panther Lake-H404 */ 45 + { BTINTEL_PCI_DEVICE(0xE476, PCI_ANY_ID) }, 42 46 { 0 } 43 47 }; 44 48 MODULE_DEVICE_TABLE(pci, btintel_pcie_table);