Skip to content

Commit 72c2c00

Browse files
author
Ian Seyler
committed
Fix typos in jump
1 parent c2c8b3f commit 72c2c00

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/drivers/net/i8254x.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ net_i8254x_transmit:
295295
net_i8254x_transmit_wait:
296296
mov rax, [rbx]
297297
bt rax, 32
298-
jnc net_i8254x_transmit
298+
jnc net_i8254x_transmit_wait
299299

300300
pop rax
301301
pop rbx

src/drivers/net/i8257x.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ net_i8257x_transmit:
297297
net_i8257x_transmit_wait:
298298
mov rax, [rbx]
299299
bt rax, 32
300-
jnc net_i8257x_transmit
300+
jnc net_i8257x_transmit_wait
301301

302302
pop rax
303303
pop rbx

src/drivers/net/i8259x.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ net_i8259x_transmit:
474474
net_i8259x_transmit_wait:
475475
mov rax, [rbx]
476476
bt rax, 32
477-
jnc net_i8259x_transmit
477+
jnc net_i8259x_transmit_wait
478478

479479
pop rax
480480
pop rbx

0 commit comments

Comments
 (0)