The patch titled
ROUND_UP macro cleanup in drivers/pci
has been added to the -mm tree. Its filename is
round_up-macro-cleanup-in-drivers-pci.patch
*** Remember to use Documentation/SubmitChecklist when testing your code ***
See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this
——————————————————
Subject: ROUND_UP macro cleanup in drivers/pci
From: Milind Arun Choudhary <milindchoudhary@gmail.com>
ROUND_UP macro cleanup, use ALIGN where ever appropriate
Signed-off-by: Milind Arun Choudhary <milindchoudhary@gmail.com>
Cc: Greg KH <greg@kroah.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
—
drivers/pci/hotplug/cpci_hotplug_pci.c | 2 –
drivers/pci/setup-bus.c | 8 +++—–
2 files changed, 3 insertions(+), 7 deletions(-)
diff -puN drivers/pci/hotplug/cpci_hotplug_pci.c~round_up-macro-cleanup-in-drivers-pci drivers/pci/hotplug/cpci_hotplug_pci.c
— a/drivers/pci/hotplug/cpci_hotplug_pci.c~round_up-macro-cleanup-in-drivers-pci
+++ a/drivers/pci/hotplug/cpci_hotplug_pci.c
@@ -45,8 +45,6 @@ extern int cpci_debug;
#define info(format, arg…) printk(KERN_INFO "%s: " format "\n", MY_NAME , ## arg)
#define warn(format, arg…) printk(KERN_WARNING "%s: " format "\n", MY_NAME , ## arg)
-#define ROUND_UP(x, a) (((x) + (a) – 1) & ~((a) – 1))
-
u8 cpci_get_attention_status(struct slot* slot)
{
diff -puN drivers/pci/setup-bus.c~round_up-macro-cleanup-in-drivers-pci drivers/pci/setup-bus.c
— a/drivers/pci/setup-bus.c~round_up-macro-cleanup-in-drivers-pci
+++ a/drivers/pci/setup-bus.c
@@ -34,8 +34,6 @@
#define DBG(x…)