Commit eb8782ef72758b8700963ef8b949f5c812e6d630
Committed by
Linus Torvalds
1 parent
dd287796d6
Exists in
master
and in
4 other branches
[PATCH] PnPBIOS: Missing SMALL_TAG_ENDDEP tag
Without the attached, the kernel complains about my BIOS' PNP tables. It was ACKed before, but never merged: http://marc.theaimsgroup.com/?l=linux-kernel&m=110237794007900&w=2 Cc: Adam Belay <ambx1@neo.rr.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Showing 1 changed file with 1 additions and 5 deletions Side-by-side Diff
drivers/pnp/pnpbios/rsparser.c
| ... | ... | @@ -448,11 +448,7 @@ |
| 448 | 448 | break; |
| 449 | 449 | |
| 450 | 450 | case SMALL_TAG_END: |
| 451 | - if (option_independent != option) | |
| 452 | - printk(KERN_WARNING "PnPBIOS: Missing SMALL_TAG_ENDDEP tag\n"); | |
| 453 | - p = p + 2; | |
| 454 | - return (unsigned char *)p; | |
| 455 | - break; | |
| 451 | + return p + 2; | |
| 456 | 452 | |
| 457 | 453 | default: /* an unkown tag */ |
| 458 | 454 | len_err: |