Re: [PATCH] PnP Changes for 2.5.72

From: Adam Belay (ambx1@neo.rr.com)
Date: Wed Jun 18 2003 - 18:44:46 EST


# 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.1415 -> 1.1416
# drivers/pnp/resource.c 1.14 -> 1.15
#
# The following is the BitKeeper ChangeSet Log
# --------------------------------------------
# 03/06/18 ambx1@neo.rr.com 1.1416
# [PNP] /drivers/pnp/resource.c check_region warning fix
#
# This patch resolves the compiler warning caused by the depreciated check_region
# function. It may not be the best solution but check_region really is what is
# needed here because we never actually have to call "request_region". If prefered,
# I could alternatively request and release but doing so would be less efficient.
# --------------------------------------------
#
diff -Nru a/drivers/pnp/resource.c b/drivers/pnp/resource.c
--- a/drivers/pnp/resource.c Wed Jun 18 23:02:14 2003
+++ b/drivers/pnp/resource.c Wed Jun 18 23:02:14 2003
@@ -255,7 +255,7 @@
         /* check if the resource is already in use, skip if the
          * device is active because it itself may be in use */
         if(!dev->active) {
- if (check_region(*port, length(port,end)))
+ if (__check_region(&ioport_resource, *port, length(port,end)))
                         return 0;
         }
 
@@ -309,7 +309,7 @@
         /* check if the resource is already in use, skip if the
          * device is active because it itself may be in use */
         if(!dev->active) {
- if (__check_region(&iomem_resource, *addr, length(addr,end)))
+ if (check_mem_region(*addr, length(addr,end)))
                         return 0;
         }
 
-
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/



This archive was generated by hypermail 2b29 : Mon Jun 23 2003 - 22:00:28 EST