platform/x86: p2sb: Use pci_resource_n() in p2sb_read_bar0()
authorShin'ichiro Kawasaki <shinichiro.kawasaki@wdc.com>
Mon, 8 Jan 2024 06:20:59 +0000 (15:20 +0900)
committerHans de Goede <hdegoede@redhat.com>
Mon, 22 Jan 2024 10:37:27 +0000 (11:37 +0100)
Accesses to resource[] member of struct pci_dev shall be wrapped with
pci_resource_n() for future compatibility. Call the helper function in
p2sb_read_bar0().

Suggested-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Shin'ichiro Kawasaki <shinichiro.kawasaki@wdc.com>
Link: https://lore.kernel.org/r/20240108062059.3583028-3-shinichiro.kawasaki@wdc.com
Tested-by Klara Modin <klarasmodin@gmail.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
drivers/platform/x86/p2sb.c

index 17cc4b45e0239b68ea8ea19112ae2d77c6009007..6bd14d0132dbd73b1ea497679d4dd8297671859e 100644 (file)
@@ -65,7 +65,7 @@ static bool p2sb_valid_resource(struct resource *res)
 /* Copy resource from the first BAR of the device in question */
 static void p2sb_read_bar0(struct pci_dev *pdev, struct resource *mem)
 {
-       struct resource *bar0 = &pdev->resource[0];
+       struct resource *bar0 = pci_resource_n(pdev, 0);
 
        /* Make sure we have no dangling pointers in the output */
        memset(mem, 0, sizeof(*mem));