Fix some typos

This commit is contained in:
Matt Harlum 2025-01-29 06:11:23 +13:00 committed by GitHub
parent 00cad237e1
commit 41bfdf35c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

2
ata.c
View File

@ -189,7 +189,7 @@ bool ata_select(struct IDEUnit *unit, UBYTE select, bool wait)
* Send an IDENTIFY command to the device and place the results in the buffer
* @param unit Pointer to an IDEUnit struct
* @param buffer Pointer to the destination buffer
* @return fals on error
* @return false on error
*/
bool ata_identify(struct IDEUnit *unit, UWORD *buffer)
{

View File

@ -385,7 +385,7 @@ void __attribute__((noreturn)) diskchange_task () {
Trace("Testing unit %ld\n",unit->unitNum);
ioreq->io_Unit = (struct Unit *)unit;
PutMsg(unit->itask->iomp,(struct Message *)ioreq); // Send request dirßsectly to the ide task
PutMsg(unit->itask->iomp,(struct Message *)ioreq); // Send request directly to the ide task
WaitPort(iomp);
GetMsg(iomp);
@ -438,7 +438,7 @@ die:
* Initialize the IDE Drives and add them to the dev->units list
*
* @param itask Pointer to an IDETask struct
* @returns number of drives foun
* @returns number of drives found
*/
static BYTE init_units(struct IDETask *itask) {
struct ExecBase *SysBase = itask->dev->SysBase;