diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2015-07-07 14:56:20 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2015-07-14 14:40:08 -0400 |
commit | 17856452431eaa1f12da4e147cd06d7ac7f5aea0 (patch) | |
tree | c69a678148a7b86584884d1f222fe91d0bb2f350 /src/hw/ata.c | |
parent | 5dcd1ee7c32dcd9187f95fabe5bd4770fa8e5072 (diff) | |
download | seabios-17856452431eaa1f12da4e147cd06d7ac7f5aea0.tar.gz |
block: Rename process_XXX_op() functions to XXX_process_op()
Rename disk driver dispatch functions to a consistent naming style.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/hw/ata.c')
-rw-r--r-- | src/hw/ata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hw/ata.c b/src/hw/ata.c index b5bd75f4..3efc6ab5 100644 --- a/src/hw/ata.c +++ b/src/hw/ata.c @@ -552,7 +552,7 @@ ata_readwrite(struct disk_op_s *op, int iswrite) // 16bit command demuxer for ATA harddrives. int -process_ata_op(struct disk_op_s *op) +ata_process_op(struct disk_op_s *op) { if (!CONFIG_ATA) return 0; |