On Fri, Sep 24, 2010 at 03:46:44PM +0200, Par-Gunnar Hjalmdahl wrote: > +#ifndef PIN_INPUT_PULLUP > +#define PIN_INPUT_PULLUP (PIN_DIR_INPUT | PIN_PULL_UP) > +#endif > + > +#ifndef GPIO_LOW > +#define GPIO_LOW 0 > +#endif > + > +#ifndef GPIO_HIGH > +#define GPIO_HIGH 1 > +#endif > + > +#ifndef GPIO_TO_IRQ > +#define GPIO_TO_IRQ NOMADIK_GPIO_TO_IRQ > +#endif None of this looks like things that should be added in driver code - there should be standard ways of doing this stuff that you should use and if there aren't and they are useful they should be added in generic code so that other code can use them. > +/** BT_ENABLE_GPIO - GPIO to enable/disable the BT module. > + */ > +#define BT_ENABLE_GPIO 170 This sort of thing should be passed in from the board configuration normallly. > +void cg2900_devices_enable_chip(void) > +{ > + gpio_set_value(GBF_ENA_RESET_GPIO, GPIO_HIGH); > +} > +EXPORT_SYMBOL(cg2900_devices_enable_chip); This looks like something that the driver should be organising rather than something that should be exported for some random code to pick up? In general most of the code in here looks like it should have more device model usage and make more use of standard kernel infrastructure. > +static irqreturn_t cg2900_devices_interrupt(int irq, void *dev_id) > +{ > + disable_irq_nosync(irq); > + if (cg2900_dev_callback && cg2900_dev_callback->interrupt_cb) > + cg2900_dev_callback->interrupt_cb(); > + > + return IRQ_HANDLED; > +} Why is there this callback mechanism - I'd expect the users of this code to just be using the standard IRQ infrastructure? -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html