From bb57b124d1bb385d41747f50be7dd4f3625539c1 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 24 Nov 2019 23:34:32 +0100 Subject: Major coding style reformatting -> Kernighan & Ritchie This project now (hopefully) uses the same style recommended by Kernighan and Ritchie and used in the Linux Kernel --- src/kernel/fs/atapi_pio.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'src/kernel/fs/atapi_pio.c') diff --git a/src/kernel/fs/atapi_pio.c b/src/kernel/fs/atapi_pio.c index e64cd75..34cd1e6 100644 --- a/src/kernel/fs/atapi_pio.c +++ b/src/kernel/fs/atapi_pio.c @@ -3,13 +3,14 @@ #include #include -void ATAPI_read(uint16_t nblocks, uint32_t lba) { +void ATAPI_read(uint16_t nblocks, uint32_t lba) +{ struct dapack *d = (struct dapack *) ATAPI_PIO_DAPACK; d->size = 0x10; d->null = 0x00; - d->blkcount = nblocks; - d->boffset = ATAPI_PIO_BUFFER; - d->bsegment = 0x0000; + d->blk_count = nblocks; + d->b_offset = ATAPI_PIO_BUFFER; + d->b_segment = 0x0000; d->start = lba; d->upper_lba_bits = 0x00000000; @@ -22,7 +23,8 @@ void ATAPI_read(uint16_t nblocks, uint32_t lba) { v86(LBA_READ_INT, ®s); } -void ATAPI_granular_read(uint32_t nblocks, uint32_t lba, uint8_t *output) { +void ATAPI_granular_read(uint32_t nblocks, uint32_t lba, uint8_t *output) +{ for (uint32_t i = 0; i < nblocks; i++) { ATAPI_read(1, lba + i); for (uint16_t j = 0; j < ATAPI_SECTOR_SIZE; j++) output[j + (2048 * i)] = ((uint8_t *) ATAPI_PIO_BUFFER)[j]; -- cgit v1.2.3