The patch titled pr_debug: tipar: repair nonexistant pr_debug argument use has been removed from the -mm tree. Its filename is pr_debug-tipar-repair-nonexistant-pr_debug-argument-use.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: pr_debug: tipar: repair nonexistant pr_debug argument use From: Zach Brown <zach.brown@xxxxxxxxxx> tipar: repair nonexistant pr_debug argument use I guessed what the pr_debug meant by 'data'. Signed-off-by: Zach Brown <zach.brown@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/char/tipar.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff -puN drivers/char/tipar.c~pr_debug-tipar-repair-nonexistant-pr_debug-argument-use drivers/char/tipar.c --- a/drivers/char/tipar.c~pr_debug-tipar-repair-nonexistant-pr_debug-argument-use +++ a/drivers/char/tipar.c @@ -224,14 +224,16 @@ probe_ti_parallel(int minor) { int i; int seq[] = { 0x00, 0x20, 0x10, 0x30 }; + int data; for (i = 3; i >= 0; i--) { outbyte(3, minor); outbyte(i, minor); udelay(delay); + data = inbyte(minor) & 0x30; pr_debug("tipar: Probing -> %i: 0x%02x 0x%02x\n", i, - data & 0x30, seq[i]); - if ((inbyte(minor) & 0x30) != seq[i]) { + data, seq[i]); + if (data != seq[i]) { outbyte(3, minor); return -1; } _ Patches currently in -mm which might be from zach.brown@xxxxxxxxxx are origin.patch dio-centralize-completion-in-dio_complete.patch dio-call-blk_run_address_space-once-per-op.patch dio-formalize-bio-counters-as-a-dio-reference-count.patch dio-remove-duplicate-bio-wait-code.patch dio-only-call-aio_complete-after-returning-eiocbqueued.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html