The intention all along was to accept pin names irrelevant of their case.
But I guess I forgot to test/implement support for that.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
 
 #include <common.h>
 #include <command.h>
+#include <linux/ctype.h>
 
 #include <asm/blackfin.h>
 #include <asm/gpio.h>
 
        /* grab the [p]<port> portion */
        ulong port_base;
-       if (*str_pin == 'p') ++str_pin;
-       switch (*str_pin) {
+       if (tolower(*str_pin) == 'p') ++str_pin;
+       switch (tolower(*str_pin)) {
 #ifdef GPIO_PA0
                case 'a': port_base = GPIO_PA0; break;
 #endif