From 0a699e87c77476b2f58fe1fc598b5c2ee7994930 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Thu, 16 Jul 2020 17:00:58 +0200 Subject: [PATCH] cpu/lpc23xx: rename remaining occurrences of lpc2387 --- cpu/lpc23xx/periph/gpio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpu/lpc23xx/periph/gpio.c b/cpu/lpc23xx/periph/gpio.c index 4331ea02ca..b9fe672288 100644 --- a/cpu/lpc23xx/periph/gpio.c +++ b/cpu/lpc23xx/periph/gpio.c @@ -52,7 +52,7 @@ static int _isr_map_entry(gpio_t pin) { unsigned _pin = pin & 31; unsigned port = pin >> 5; - /* lpc2387 can only interrupt in pins of port 0 and 2 */ + /* lpc23xx can only interrupt in pins of port 0 and 2 */ if (port && port != 2) { return -1; } @@ -214,7 +214,7 @@ int gpio_init_int(gpio_t pin, gpio_mode_t mode, gpio_flank_t flank, if (_state_index == 0xff) { #ifdef DEVELHELP - puts("lpc2387: gpio: warning: no free gpio callback state!"); + puts("lpc23xx: gpio: warning: no free gpio callback state!"); #endif return -1; }