]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - src/patches/suse-2.6.27.31/patches.drivers/0017-Staging-Fix-gcc-warnings-in-sxg.patch
Revert "Move xen patchset to new version's subdir."
[people/pmueller/ipfire-2.x.git] / src / patches / suse-2.6.27.31 / patches.drivers / 0017-Staging-Fix-gcc-warnings-in-sxg.patch
diff --git a/src/patches/suse-2.6.27.31/patches.drivers/0017-Staging-Fix-gcc-warnings-in-sxg.patch b/src/patches/suse-2.6.27.31/patches.drivers/0017-Staging-Fix-gcc-warnings-in-sxg.patch
deleted file mode 100644 (file)
index 96b499b..0000000
+++ /dev/null
@@ -1,60 +0,0 @@
-From d63d692a44c918723895f792ffd17eab7bcfb8ef Mon Sep 17 00:00:00 2001
-From: J.R. Mauro <jrm8005@gmail.com>
-Date: Fri, 3 Oct 2008 12:21:49 -0400
-Subject: [PATCH 17/23] Staging: Fix gcc warnings in sxg
-Patch-mainline: 2.6.28
-
-Fix for compiler warning about format specifier in prints in
-drivers/staging/sxg/sxg.c
-Prints were using %x to print unsigned long data.
-
-
-Signed-off-by: J.R. Mauro <jrm8005@gmail.com>
-Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
----
- drivers/staging/sxg/sxg.c |    8 ++++----
- 1 files changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/drivers/staging/sxg/sxg.c b/drivers/staging/sxg/sxg.c
-index a91c9f3..0117d51 100644
---- a/drivers/staging/sxg/sxg.c
-+++ b/drivers/staging/sxg/sxg.c
-@@ -453,7 +453,7 @@ static int sxg_allocate_resources(p_adapter_t adapter)
-       // fails.  If we hit a minimum, fail.
-       for (;;) {
--              DBG_ERROR("%s Allocate XmtRings size[%x]\n", __FUNCTION__,
-+              DBG_ERROR("%s Allocate XmtRings size[%lx]\n", __FUNCTION__,
-                         (sizeof(SXG_XMT_RING) * 1));
-               // Start with big items first - receive and transmit rings.  At the moment
-@@ -470,7 +470,7 @@ static int sxg_allocate_resources(p_adapter_t adapter)
-               }
-               memset(adapter->XmtRings, 0, sizeof(SXG_XMT_RING) * 1);
--              DBG_ERROR("%s Allocate RcvRings size[%x]\n", __FUNCTION__,
-+              DBG_ERROR("%s Allocate RcvRings size[%lx]\n", __FUNCTION__,
-                         (sizeof(SXG_RCV_RING) * 1));
-               adapter->RcvRings =
-                   pci_alloc_consistent(adapter->pcidev,
-@@ -531,7 +531,7 @@ static int sxg_allocate_resources(p_adapter_t adapter)
-               return (STATUS_RESOURCES);
-       }
--      DBG_ERROR("%s Allocate EventRings size[%x]\n", __FUNCTION__,
-+      DBG_ERROR("%s Allocate EventRings size[%lx]\n", __FUNCTION__,
-                 (sizeof(SXG_EVENT_RING) * RssIds));
-       // Allocate event queues.
-@@ -562,7 +562,7 @@ static int sxg_allocate_resources(p_adapter_t adapter)
-       }
-       memset(adapter->Isr, 0, sizeof(u32) * IsrCount);
--      DBG_ERROR("%s Allocate shared XMT ring zero index location size[%x]\n",
-+      DBG_ERROR("%s Allocate shared XMT ring zero index location size[%lx]\n",
-                 __FUNCTION__, sizeof(u32));
-       // Allocate shared XMT ring zero index location
--- 
-1.6.0.2
-