[PATCH] ACPI/PCI: fix array_size.cocci warnings

From: kernel test robot
Date: Sat Jul 18 2020 - 04:06:41 EST


From: kernel test robot <lkp@xxxxxxxxx>

drivers/acpi/pci_root.c:150:37-38: WARNING: Use ARRAY_SIZE

Use ARRAY_SIZE instead of dividing sizeof array with sizeof an element

Semantic patch information:
This makes an effort to find cases where ARRAY_SIZE can be used such as
where there is a division of sizeof the array by the sizeof its first
element or by any indexed element or the element type. It replaces the
division of the two sizeofs by ARRAY_SIZE.

Generated by: scripts/coccinelle/misc/array_size.cocci

CC: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@xxxxxxxxxxxxxxx>
Signed-off-by: kernel test robot <lkp@xxxxxxxxx>
---

url: https://github.com/0day-ci/linux/commits/sathyanarayanan-kuppuswamy-linux-intel-com/Simplify-PCIe-native-ownership-detection-logic/20200718-012614
base: https://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git next

pci_root.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

--- a/drivers/acpi/pci_root.c
+++ b/drivers/acpi/pci_root.c
@@ -147,7 +147,7 @@ static struct pci_osc_bit_struct pci_osc

static char *get_osc_desc(u32 bit)
{
- int len = sizeof(pci_osc_control_bit) / sizeof(pci_osc_control_bit[0]);
+ int len = ARRAY_SIZE(pci_osc_control_bit);
int i = 0;

for (i = 0; i <len; i++)