Re: [PATCH] PnP Changes for 2.5.72

Adam Belay (ambx1@neo.rr.com)
Wed, 18 Jun 2003 23:46:17 +0000


# This is a BitKeeper generated patch for the following project:
# Project Name: Linux kernel tree
# This patch format is intended for GNU patch command version 2.5 or higher.
# This patch includes the following deltas:
# ChangeSet 1.1419 -> 1.1420
# drivers/pnp/support.c 1.3 -> 1.4
#
# The following is the BitKeeper ChangeSet Log
# --------------------------------------------
# 03/06/18 ambx1@neo.rr.com 1.1420
# [PNP] Trivial Typo fix regarding DMAs
#
# The irq index is used instead of the dma index when parsing dmas.
# --------------------------------------------
#
diff -Nru a/drivers/pnp/support.c b/drivers/pnp/support.c
--- a/drivers/pnp/support.c Wed Jun 18 23:01:34 2003
+++ b/drivers/pnp/support.c Wed Jun 18 23:01:34 2003
@@ -635,7 +635,7 @@
{
if (len != 2)
goto sm_err;
- write_dma(p, &res->dma_resource[irq]);
+ write_dma(p, &res->dma_resource[dma]);
dma++;
break;
}
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/