]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[PATCH] ARM: OMAP: gpio expander debug cleanup
authorKomal Shah <komal_shah802003@yahoo.com>
Tue, 3 Jan 2006 19:08:28 +0000 (11:08 -0800)
committerTony Lindgren <tony@atomide.com>
Tue, 3 Jan 2006 19:08:28 +0000 (11:08 -0800)
Do we really need this debug macros? If not, I have removed it in this
patch.

Signed-off-by: Komal Shah <komal_shah802003@yahoo.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
drivers/i2c/chips/gpio_expander_omap.c

index 7f428641400f821305c37cbeee8ef701bc66a3ec..d63a6ee77cd30eb969ce43f760506b21ca418023 100644 (file)
 int read_gpio_expa(u8 * val, int addr);
 int write_gpio_expa(u8 val, int addr);
 
-#define OMAP_IRDA_DEBUG        0       
-
-#if (OMAP_IRDA_DEBUG > 0)
-#define DBG(format, args...) printk(KERN_ERR "%s(): " format, __FUNCTION__, ## args);
-#define DBG_IRQ(format, args...) printk(KERN_ERR "%s(): " format, __FUNCTION__, ## args);
-#else
-#define DBG(format, args...)
-#define DBG_IRQ(format, args...)
-#endif
-
 int write_gpio_expa(u8 val, int addr)
 {
        struct i2c_adapter *adap;
@@ -71,7 +61,6 @@ int read_gpio_expa(u8 * val, int addr)
        err = i2c_transfer(adap, msg, 1);
        *val = data[0];
 
-       DBG("I2C: Read data is %x\n", (u8) * data);
        if (err >= 0)
                return 0;
        return err;