net: ena: Use pci_dev_id() to simplify the code
authorJialin Zhang <zhangjialin11@huawei.com>
Tue, 15 Aug 2023 02:42:48 +0000 (10:42 +0800)
committerJakub Kicinski <kuba@kernel.org>
Fri, 18 Aug 2023 02:13:09 +0000 (19:13 -0700)
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 manually. Use pci_dev_id() to
simplify the code a little bit.

Signed-off-by: Jialin Zhang <zhangjialin11@huawei.com>
Reviewed-by: Leon Romanovsky <leonro@nvidia.com>
Reviewed-by: Shay Agroskin <shayagr@amazon.com>
Link: https://lore.kernel.org/r/20230815024248.3519068-1-zhangjialin11@huawei.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/amazon/ena/ena_netdev.c

index d19593fae226575d1a9d070aef5d5c84e6f312dc..ad32ca81f7ef41365dda25dd0778e60bab2d5406 100644 (file)
@@ -3267,7 +3267,7 @@ static void ena_config_host_info(struct ena_com_dev *ena_dev, struct pci_dev *pd
 
        host_info = ena_dev->host_attr.host_info;
 
-       host_info->bdf = (pdev->bus->number << 8) | pdev->devfn;
+       host_info->bdf = pci_dev_id(pdev);
        host_info->os_type = ENA_ADMIN_OS_LINUX;
        host_info->kernel_ver = LINUX_VERSION_CODE;
        strscpy(host_info->kernel_ver_str, utsname()->version,