diff options
| author | Ian Lepore <ian@FreeBSD.org> | 2014-07-26 04:09:43 +0000 |
|---|---|---|
| committer | Ian Lepore <ian@FreeBSD.org> | 2014-07-26 04:09:43 +0000 |
| commit | 3ed6efc4ac9934f0a4c2fbc24af100824cebd4fd (patch) | |
| tree | bff5193c7ec63597e2c7776fff7cb44964a9dd36 /sys/boot/arm | |
| parent | a6fc3346532cbbad34e48895546f70a2b5f8f071 (diff) | |
Notes
Diffstat (limited to 'sys/boot/arm')
| -rw-r--r-- | sys/boot/arm/at91/boot2/boot2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/boot/arm/at91/boot2/boot2.c b/sys/boot/arm/at91/boot2/boot2.c index 772ccbe76483..1e17ab21c14f 100644 --- a/sys/boot/arm/at91/boot2/boot2.c +++ b/sys/boot/arm/at91/boot2/boot2.c @@ -77,7 +77,7 @@ extern uint32_t _end; #define OPT_CHECK(opt) ((opts) & OPT_SET(opt)) static const char optstr[NOPT] = "agnrsv"; -static const unsigned char flags[NOPT] = { +static const unsigned char bootflags[NOPT] = { RBX_ASKNAME, RBX_GDB, RBX_NOINTR, @@ -265,7 +265,7 @@ parse() for (i = 0; c != optstr[i]; i++) if (i == NOPT - 1) return -1; - opts ^= OPT_SET(flags[i]); + opts ^= OPT_SET(bootflags[i]); } } else { arg--; |
