All of lore.kernel.org
 help / color / mirror / Atom feed
* - omap-gpio-wrappers-tidy.patch removed from -mm tree
@ 2007-02-12  7:23 akpm
  0 siblings, 0 replies; only message in thread
From: akpm @ 2007-02-12  7:23 UTC (permalink / raw)
  To: akpm, dbrownell, mm-commits


The patch titled
     omap-gpio-wrappers-tidy
has been removed from the -mm tree.  Its filename was
     omap-gpio-wrappers-tidy.patch

This patch was dropped because it was folded into omap-gpio-wrappers.patch

------------------------------------------------------
Subject: omap-gpio-wrappers-tidy
From: Andrew Morton <akpm@osdl.org>

What on earth?

Cc: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 include/asm-arm/arch-omap/gpio.h |   30 ++++++++++++++++++++---------
 1 file changed, 21 insertions(+), 9 deletions(-)

diff -puN include/asm-arm/arch-omap/gpio.h~omap-gpio-wrappers-tidy include/asm-arm/arch-omap/gpio.h
--- a/include/asm-arm/arch-omap/gpio.h~omap-gpio-wrappers-tidy
+++ a/include/asm-arm/arch-omap/gpio.h
@@ -86,11 +86,14 @@ extern int omap_get_gpio_datain(int gpio
 #include <asm/errno.h>
 
 static inline int gpio_request(unsigned gpio, const char *label)
-	{ return omap_request_gpio(gpio); }
+{
+	return omap_request_gpio(gpio);
+}
 
 static inline void gpio_free(unsigned gpio)
-	{ omap_free_gpio(gpio); }
-
+{
+	omap_free_gpio(gpio);
+}
 
 static inline int __gpio_set_direction(unsigned gpio, int is_input)
 {
@@ -106,22 +109,31 @@ static inline int __gpio_set_direction(u
 }
 
 static inline int gpio_direction_input(unsigned gpio)
-	{ return __gpio_set_direction(gpio, 1); }
+{
+	return __gpio_set_direction(gpio, 1);
+}
 
 static inline int gpio_direction_output(unsigned gpio)
-	{ return __gpio_set_direction(gpio, 0); }
-
+{
+	return __gpio_set_direction(gpio, 0);
+}
 
 static inline int gpio_get_value(unsigned gpio)
-	{ return omap_get_gpio_datain(gpio); }
+{
+	return omap_get_gpio_datain(gpio);
+}
 
 static inline void gpio_set_value(unsigned gpio, int value)
-	{ omap_set_gpio_dataout(gpio, value); }
+{
+	omap_set_gpio_dataout(gpio, value);
+}
 
 #include <asm-generic/gpio.h>		/* cansleep wrappers */
 
 static inline int gpio_to_irq(unsigned gpio)
-	{ return OMAP_GPIO_IRQ(gpio); }
+{
+	return OMAP_GPIO_IRQ(gpio);
+}
 
 static inline int irq_to_gpio(unsigned irq)
 {
_

Patches currently in -mm which might be from akpm@osdl.org are

origin.patch
register_chrdev_region-dont-hand-out-the-local-experimental-majors.patch
register_blkdev-dont-hand-out-the-local-experimental-majors.patch
spi-controller-driver-for-omap-microwire.patch
mips-convert-to-use-shared-apm-emulation-fix.patch
omap-gpio-wrappers.patch
omap-gpio-wrappers-tidy.patch
at91-gpio-wrappers-tidy.patch
ecryptfs-public-key-packet-management-slab-fix.patch
ecryptfs-generalize-metadata-read-write-fix.patch
dynamic-kernel-command-line-ia64-fix.patch
kvm-add-a-global-list-of-all-virtual-machines-tidy.patch
cyber2010-framebuffer-on-arm-netwinder-fix-tidy.patch
mark-struct-file_operations-const-2-fix.patch
mark-struct-file_operations-const-4-fix.patch

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-02-12  7:23 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-02-12  7:23 - omap-gpio-wrappers-tidy.patch removed from -mm tree akpm

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.