From c6da9f6a8cbcb7bb32e4bdf7a53d2362aafb19e5 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Sat, 4 Aug 2001 20:43:48 +0000 Subject: [PATCH] - Fix a comment. - Whitespace fixes. Submitted by: bde --- sys/i386/isa/ipl.s | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/sys/i386/isa/ipl.s b/sys/i386/isa/ipl.s index e7088cef914..b28837e45bb 100644 --- a/sys/i386/isa/ipl.s +++ b/sys/i386/isa/ipl.s @@ -55,10 +55,9 @@ SUPERALIGN_TEXT .type doreti,@function doreti: - FAKE_MCOUNT(bintr) /* init "from" bintr -> doreti */ doreti_next: - /* Check for ASTs that can be handled now. */ + /* Check if ASTs can be handled now. */ testb $SEL_RPL_MASK,TF_CS(%esp) /* are we in user mode? */ jne doreti_ast /* yes, do it now. */ testl $PSL_VM,TF_EFLAGS(%esp) /* kernel mode */ @@ -69,7 +68,7 @@ doreti_next: doreti_ast: pushl %esp /* pass a pointer to the trapframe */ call ast - add $4, %esp + add $4,%esp /* * doreti_exit: pop registers, iret.