aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/fs/atapi_pio.h
diff options
context:
space:
mode:
authorMarvin Borner2020-03-18 17:32:50 +0100
committerMarvin Borner2020-03-18 17:32:50 +0100
commitf495cc1e93710c233292a503720ec235a61b685c (patch)
tree23b0b4b82b6d80001c1ffdb15f00b93cbdc65722 /src/kernel/fs/atapi_pio.h
parentc6657aac0c5d5ecf347bc082cb6df38e1174d297 (diff)
Applied official linux kernel code style guidelines
Due to my change to vim and the clang-format plugin this was needed!
Diffstat (limited to 'src/kernel/fs/atapi_pio.h')
-rw-r--r--src/kernel/fs/atapi_pio.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/kernel/fs/atapi_pio.h b/src/kernel/fs/atapi_pio.h
index 20bef43..b7ddee8 100644
--- a/src/kernel/fs/atapi_pio.h
+++ b/src/kernel/fs/atapi_pio.h
@@ -10,13 +10,13 @@
#define ATAPI_SECTOR_SIZE 2048
struct dapack {
- uint8_t size;
- uint8_t null;
- uint16_t blk_count;
- uint16_t b_offset;
- uint16_t b_segment;
- uint32_t start;
- uint32_t upper_lba_bits;
+ uint8_t size;
+ uint8_t null;
+ uint16_t blk_count;
+ uint16_t b_offset;
+ uint16_t b_segment;
+ uint32_t start;
+ uint32_t upper_lba_bits;
} __attribute__((packed));
void ATAPI_read(uint16_t nblocks, uint32_t lba);