diff options
author | Marvin Borner | 2019-11-24 23:34:32 +0100 |
---|---|---|
committer | Marvin Borner | 2019-11-24 23:34:32 +0100 |
commit | bb57b124d1bb385d41747f50be7dd4f3625539c1 (patch) | |
tree | fe461afad63df40571784565e8d435cba8c8e59c /src/kernel/fs/atapi_pio.c | |
parent | f9c50b9ff23e9a3e8db5826fef7a6e7ebb8af21d (diff) |
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
Diffstat (limited to 'src/kernel/fs/atapi_pio.c')
-rw-r--r-- | src/kernel/fs/atapi_pio.c | 12 |
1 files changed, 7 insertions, 5 deletions
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 <kernel/system.h> #include <kernel/paging/paging.h> -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]; |