Skip to content

Commit c65029b

Browse files
Jialin Zhangvinodkoul
authored andcommitted
dmaengine: ioatdma: use pci_dev_id() to simplify the code
PCI core API pci_dev_id() can be used to get the BDF number for a pci device. We don't need to compose it mannually. Use pci_dev_id() to simplify the code a little bit. Signed-off-by: Jialin Zhang <[email protected]> Reviewed-by: Dave Jiang <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Vinod Koul <[email protected]>
1 parent f4f84fb commit c65029b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/dma/ioat/dca.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
/* pack PCI B/D/F into a u16 */
5252
static inline u16 dcaid_from_pcidev(struct pci_dev *pci)
5353
{
54-
return (pci->bus->number << 8) | pci->devfn;
54+
return pci_dev_id(pci);
5555
}
5656

5757
static int dca_enabled_in_bios(struct pci_dev *pdev)

0 commit comments

Comments
 (0)