cpu/lpc23xx: rename remaining occurrences of lpc2387

This commit is contained in:
Alexandre Abadie 2020-07-16 17:00:58 +02:00
parent 46a053e674
commit 0a699e87c7
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -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;
}