Gregory Nutt
415d83cf19
STMPE811: Fix name collision in include/nuttx/input/stmpe811.h
The macro name GPIO_PIN collides with naming used by many architectures:
$ find . -name "*.h" | xargs grep "define GPIO_PIN[(]"
./arch/arm/src/am335x/hardware/am335x_gpio.h:#define GPIO_PIN(n) (1 << ((n) & 0x1f)) /* Bit n: Pin n, n=0-31 */
./arch/arm/src/imx6/hardware/imx_gpio.h:#define GPIO_PIN(n) (1 << (n)) /* Bit n: Pin n, n=0-31 */
./arch/arm/src/imxrt/hardware/imxrt_gpio.h:#define GPIO_PIN(n) (1 << (n)) /* Bit n: Pin n, n=0-31 */
./arch/arm/src/lpc43xx/hardware/lpc43_gpio.h:#define GPIO_PIN(p) (1 << (p)) /* Bits 0-31: Read/write pin state */
./arch/arm/src/nrf52/nrf52_gpio.h:# define GPIO_PIN(n) ((n) << GPIO_PIN_SHIFT)
./arch/arm/src/nuc1xx/hardware/nuc_gpio.h:#define GPIO_PIN(n) (1 << (n)) /* Bit n: GPIOx Pin[n] pin value */
./arch/avr/src/at32uc3/at32uc3_gpio.h:#define GPIO_PIN(n) (1 << (n))
./include/nuttx/input/stmpe811.h:#define GPIO_PIN(n) (1 << (n))
This commit changes the name used by the STMPE811 driver to STMPE11_GPIO_PIN
2020-09-17 12:10:29 -07:00
..
2020-04-11 21:19:47 +01:00
2020-09-15 10:28:21 -03:00
2020-06-15 08:07:19 -06:00
2020-01-31 21:23:15 +01:00
2020-08-29 14:04:54 -06:00
2020-09-17 12:10:29 -07:00
2020-09-15 10:28:21 -03:00
2020-05-23 18:00:40 +01:00
2020-05-07 10:31:05 -06:00
2019-04-04 11:04:08 -06:00
2020-07-19 01:21:36 +01:00
2020-02-28 18:18:50 -06:00
2018-08-27 05:47:59 -06:00
2020-08-21 16:56:00 +08:00
2020-05-05 08:27:58 -06:00
2020-07-07 13:41:10 +01:00
2020-02-23 22:27:46 +01:00
2020-05-31 14:09:03 -06:00
2020-04-30 08:46:21 -06:00
2020-04-30 08:46:21 -06:00
2020-05-31 21:38:32 -07:00
2018-11-09 09:05:48 -06:00
2020-05-07 23:11:34 +01:00
2020-05-07 10:31:05 -06:00
2020-02-23 22:27:46 +01:00
2020-08-11 16:44:42 +09:00
2019-08-03 08:23:04 -06:00
2019-06-26 14:37:19 -06:00
2020-02-23 22:27:46 +01:00
2020-09-11 17:58:17 +08:00
2020-06-15 07:20:19 -06:00
2020-01-31 19:07:39 +01:00
2020-08-24 03:36:44 -07:00
2020-05-07 10:31:05 -06:00
2020-04-01 16:09:28 -06:00
2020-02-23 22:27:46 +01:00
2019-06-13 16:23:04 -06:00
2020-08-20 10:46:14 +01:00
2019-08-04 07:18:58 -06:00
2018-08-27 05:57:53 -06:00
2020-05-25 23:54:45 +01:00
2020-07-27 20:39:59 -03:00
2020-09-11 10:41:24 +08:00
2020-05-07 10:31:05 -06:00
2019-01-27 11:25:00 -06:00
2020-05-27 05:40:37 -06:00
2020-06-10 08:24:47 +02:00
2020-09-15 10:28:21 -03:00
2020-07-08 12:07:22 +01:00
2020-08-14 03:44:26 -07:00
2020-08-05 04:39:03 -07:00
2020-05-11 11:32:55 -04:00
2020-09-15 10:28:21 -03:00
2020-06-02 09:45:05 +02:00
2020-08-21 07:48:52 -03:00
2020-09-15 10:28:21 -03:00
2020-07-21 21:48:18 -07:00
2020-06-08 11:42:56 +01:00
2020-05-07 10:31:05 -06:00