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/block.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/block.c')
-rw-r--r-- | src/block.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/block.c b/src/block.c index aa341a23..c96daaf6 100644 --- a/src/block.c +++ b/src/block.c @@ -11,7 +11,7 @@ #include "util.h" // dprintf #include "ata.h" // process_ata_op -struct drives_s Drives VAR16_32; +struct drives_s Drives VAR16VISIBLE; /**************************************************************** @@ -280,6 +280,7 @@ send_disk_op(struct disk_op_s *op) { if (! CONFIG_DRIVES) return -1; + ASSERT16(); return stack_hop((u32)op, GET_SEG(SS), 0, __send_disk_op); } |