Change formatting rules
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 2m7s
Build documentation / build-and-deploy (push) Successful in 39s

This commit is contained in:
2026-04-24 01:54:48 +02:00
parent 34f7809a2d
commit c8fb575bdd
208 changed files with 6310 additions and 6339 deletions

View File

@@ -53,22 +53,22 @@ struct ide_probe {
bool irqs_support;
};
DEFINE_DEVICE_INIT (idedrv_init);
DEFINE_DEVICE_INIT(idedrv_init);
DEFINE_DEVICE_FINI (idedrv_fini);
DEFINE_DEVICE_FINI(idedrv_fini);
DEFINE_DEVICE_OP (idedrv_read);
DEFINE_DEVICE_OP(idedrv_read);
DEFINE_DEVICE_OP (idedrv_write);
DEFINE_DEVICE_OP(idedrv_write);
DEFINE_DEVICE_OP (idedrv_get_device_type);
DEFINE_DEVICE_OP(idedrv_get_device_type);
DEFINE_DEVICE_OP (idedrv_get_sector_size);
DEFINE_DEVICE_OP(idedrv_get_sector_size);
DEFINE_DEVICE_OP (idedrv_get_size);
DEFINE_DEVICE_OP(idedrv_get_size);
DEFINE_DEVICE_OP (idedrv_partition_rescan);
DEFINE_DEVICE_OP(idedrv_partition_rescan);
void ide_probe (uint16_t io, uint16_t ctrl, uint8_t devno, struct ide_probe* probe);
void ide_probe(uint16_t io, uint16_t ctrl, uint8_t devno, struct ide_probe* probe);
#endif // _KERNEL_DEVICE_IDEDRV_H