diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2009-09-09 09:51:31 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2009-09-09 09:51:31 -0400 |
commit | 372e071ed4b6a66fb371cf13b6f6d14ddd00837a (patch) | |
tree | a5c939b039cd417a82288ae327fb5df6944887d3 /src/vgahooks.c | |
parent | 141436b5b253039436d46f0cf883fabd2822367e (diff) | |
download | seabios-372e071ed4b6a66fb371cf13b6f6d14ddd00837a.tar.gz |
Rename VAR16_32 to VAR16VISIBLE.
Sometimes VAR16_32 is used to export a definition to assembler, so
clarify its naming.
Diffstat (limited to 'src/vgahooks.c')
-rw-r--r-- | src/vgahooks.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vgahooks.c b/src/vgahooks.c index ddeb1d31..701e83cc 100644 --- a/src/vgahooks.c +++ b/src/vgahooks.c @@ -13,9 +13,9 @@ #include "config.h" // CONFIG_* // The Bus/Dev/Fn of the primary VGA device. -int VGAbdf VAR16_32; +int VGAbdf VAR16VISIBLE; // Coreboot board detected. -int CBmainboard VAR16_32; +int CBmainboard VAR16VISIBLE; static void handle_155fXX(struct bregs *regs) |