···1818 /* Boards following the design guidelines in the developer's manual,1919 * with on-chip GPIOs not Lubbock's weird hardware, can have a sane2020 * VBUS IRQ and omit the methods above. Store the GPIO number2121- * here; for GPIO 0, also mask in one of the pxa_gpio_mode() bits.2222- * Note that sometimes the signals go through inverters...2121+ * here. Note that sometimes the signals go through inverters...2322 */2423 bool gpio_vbus_inverted;2524 u16 gpio_vbus; /* high == vbus present */
+3-3
drivers/input/keyboard/corgikbd.c
···8080#define KB_ACTIVATE_DELAY 1081818282/* Helper functions for reading the keyboard matrix8383- * Note: We should really be using pxa_gpio_mode to alter GPDR but it8484- * requires a function call per GPIO bit which is excessive8585- * when we need to access 12 bits at once multiple times.8383+ * Note: We should really be using the generic gpio functions to alter8484+ * GPDR but it requires a function call per GPIO bit which is8585+ * excessive when we need to access 12 bits at once, multiple times.8686 * These functions must be called within local_irq_save()/local_irq_restore()8787 * or similar.8888 */
+3-3
drivers/input/keyboard/spitzkbd.c
···101101#define KB_ACTIVATE_DELAY 10102102103103/* Helper functions for reading the keyboard matrix104104- * Note: We should really be using pxa_gpio_mode to alter GPDR but it105105- * requires a function call per GPIO bit which is excessive106106- * when we need to access 11 bits at once, multiple times.104104+ * Note: We should really be using the generic gpio functions to alter105105+ * GPDR but it requires a function call per GPIO bit which is106106+ * excessive when we need to access 11 bits at once, multiple times.107107 * These functions must be called within local_irq_save()/local_irq_restore()108108 * or similar.109109 */
+3-3
drivers/input/keyboard/tosakbd.c
···595960606161/* Helper functions for reading the keyboard matrix6262- * Note: We should really be using pxa_gpio_mode to alter GPDR but it6363- * requires a function call per GPIO bit which is excessive6464- * when we need to access 12 bits at once, multiple times.6262+ * Note: We should really be using the generic gpio functions to alter6363+ * GPDR but it requires a function call per GPIO bit which is6464+ * excessive when we need to access 12 bits at once, multiple times.6565 * These functions must be called within local_irq_save()/local_irq_restore()6666 * or similar.6767 */