Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 257217
b: refs/heads/master
c: bd6a46e
h: refs/heads/master
i:
  257215: 7eaf2a9
v: v3
  • Loading branch information
Naga Chumbalkar authored and Ingo Molnar committed Jul 11, 2011
1 parent 236c159 commit d37d782
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ded1f6ab43a03be74a53649cf388b5424d447584
refs/heads/master: bd6a46e087571897f0b2736917500b97d18dac13
8 changes: 5 additions & 3 deletions trunk/arch/x86/kernel/apic/io_apic.c
Original file line number Diff line number Diff line change
Expand Up @@ -1522,10 +1522,12 @@ __apicdebuginit(void) print_IO_APIC(void)
printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);

printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)&reg_01);
printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
printk(KERN_DEBUG "....... : max redirection entries: %02X\n",
reg_01.bits.entries);

printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
printk(KERN_DEBUG "....... : IO APIC version: %02X\n",
reg_01.bits.version);

/*
* Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
Expand Down Expand Up @@ -1558,7 +1560,7 @@ __apicdebuginit(void) print_IO_APIC(void)

entry = ioapic_read_entry(apic, i);

printk(KERN_DEBUG " %02x %03X ",
printk(KERN_DEBUG " %02x %02X ",
i,
entry.dest
);
Expand Down

0 comments on commit d37d782

Please sign in to comment.