The patch titled
m68knommu: use ARRAY_SIZE in ColdFire serial driver
has been removed from the -mm tree. Its filename was
m68knommu-use-array_size-in-coldfire-serial-driver.patch
This patch was dropped because it was merged into mainline or a subsystem tree
The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/
------------------------------------------------------
Subject: m68knommu: use ARRAY_SIZE in ColdFire serial driver
From: Greg Ungerer <[EMAIL PROTECTED]>
Use ARRAY_SIZE macroto get maximum ports in ColdFire serial driver.
Signed-off-by: Greg Ungerer <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
drivers/serial/mcf.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff -puN
drivers/serial/mcf.c~m68knommu-use-array_size-in-coldfire-serial-driver
drivers/serial/mcf.c
--- a/drivers/serial/mcf.c~m68knommu-use-array_size-in-coldfire-serial-driver
+++ a/drivers/serial/mcf.c
@@ -434,7 +434,7 @@ static struct uart_ops mcf_uart_ops = {
static struct mcf_uart mcf_ports[3];
-#define MCF_MAXPORTS (sizeof(mcf_ports) / sizeof(struct mcf_uart))
+#define MCF_MAXPORTS ARRAY_SIZE(mcf_ports)
/****************************************************************************/
#if defined(CONFIG_SERIAL_MCF_CONSOLE)
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
origin.patch
add-cmpxchg_local-to-m68knommu.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html