diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2016-03-31 14:20:30 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2016-03-31 14:33:20 -0400 |
commit | 193632b63fda830694ffa47df21308c1d0c36acd (patch) | |
tree | bf269a02d3e9b64ae25d8063801879f09a1c0fc1 /src/block.h | |
parent | 6b76e69332719c4c2fb5c47e04cc629ad5dd9b71 (diff) | |
download | seabios-193632b63fda830694ffa47df21308c1d0c36acd.tar.gz |
block: Move send_disk_op() from block.c to disk.c
The send_disk_op() function is only called from the 16bit handlers
found in disk.c.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/block.h')
-rw-r--r-- | src/block.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/block.h b/src/block.h index a5f38c49..0f15ff93 100644 --- a/src/block.h +++ b/src/block.h @@ -115,7 +115,6 @@ int fill_edd(struct segoff_s edd, struct drive_s *drive_gf); void block_setup(void); int default_process_op(struct disk_op_s *op); int process_op(struct disk_op_s *op); -int send_disk_op(struct disk_op_s *op); int create_bounce_buf(void); #endif // block.h |