From: Alejandro Martinez Ruiz Date: Wed, 24 Oct 2007 08:10:11 +0000 (+0900) Subject: sh: ARRAY_SIZE() cleanup X-Git-Tag: upstream/snapshot3+hdmi~29201^2~20 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=767f0d68677ad19b3a85beb88f4e4dd54a047e42;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git sh: ARRAY_SIZE() cleanup I'm converting most array size calculations under arch/ to use the ARRAY_SIZE() macro. This is the (tiny) patch for sh. Signed-off-by: Alejandro Martinez Ruiz Signed-off-by: Paul Mundt --- diff --git a/arch/sh/drivers/pci/pci-st40.c b/arch/sh/drivers/pci/pci-st40.c index 1502a14..0814a5a 100644 --- a/arch/sh/drivers/pci/pci-st40.c +++ b/arch/sh/drivers/pci/pci-st40.c @@ -114,7 +114,7 @@ static struct pci_err int_error[]={ { INT_MWPDI, "MWPDI: PERR from target at data write"}, { INT_MRDPEI, "MRDPEI: Master read data parity error"} }; -#define NUM_PCI_INT_ERRS (sizeof(int_error)/sizeof(struct pci_err)) +#define NUM_PCI_INT_ERRS ARRAY_SIZE(int_error) static struct pci_err aint_error[]={ { AINT_MBI, "MBI: Master broken"}, @@ -126,7 +126,7 @@ static struct pci_err aint_error[]={ { AINT_WDPE, "WDPE: Write data parity"} }; -#define NUM_PCI_AINT_ERRS (sizeof(aint_error)/sizeof(struct pci_err)) +#define NUM_PCI_AINT_ERRS ARRAY_SIZE(aint_error) static void print_pci_errors(unsigned reg,struct pci_err *error,int num_errors) {