diff options
author | Marvin Borner | 2020-03-18 17:32:50 +0100 |
---|---|---|
committer | Marvin Borner | 2020-03-18 17:32:50 +0100 |
commit | f495cc1e93710c233292a503720ec235a61b685c (patch) | |
tree | 23b0b4b82b6d80001c1ffdb15f00b93cbdc65722 /src/kernel/fs/ata_pio.h | |
parent | c6657aac0c5d5ecf347bc082cb6df38e1174d297 (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/ata_pio.h')
-rw-r--r-- | src/kernel/fs/ata_pio.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/kernel/fs/ata_pio.h b/src/kernel/fs/ata_pio.h index fa08a0c..bb62805 100644 --- a/src/kernel/fs/ata_pio.h +++ b/src/kernel/fs/ata_pio.h @@ -6,16 +6,16 @@ #define BYTES_PER_SECTOR 512 struct ata_interface { - uint8_t master; - uint16_t data_port; - uint16_t error_port; - uint16_t sector_count_port; - uint16_t lba_low_port; - uint16_t lba_mid_port; - uint16_t lba_high_port; - uint16_t device_port; - uint16_t command_port; - uint16_t control_port; + uint8_t master; + uint16_t data_port; + uint16_t error_port; + uint16_t sector_count_port; + uint16_t lba_low_port; + uint16_t lba_mid_port; + uint16_t lba_high_port; + uint16_t device_port; + uint16_t command_port; + uint16_t control_port; }; struct ata_interface *new_ata(uint8_t master, uint16_t port_base); |