add one patch needed for m68k to build with gcc-4.1, we still need more, so don't activate this yet

svn path=/dists/trunk/linux-2.6/; revision=6918
This commit is contained in:
Christian T. Steigies 2006-06-28 22:34:29 +00:00
parent fe3842dccc
commit 415e35a2e4
1 changed files with 33 additions and 0 deletions

33
debian/patches/m68k-gcc-4-fix.patch vendored Normal file
View File

@ -0,0 +1,33 @@
Fixes a "static qualifier follows non-static qualifier" error from gcc 4.
Signed-off-by: Finn Thain <fthain@telegraphics.com.au>
Signed-off-by: Roman Zippel <zippel@linux-m68k.org>
---
drivers/macintosh/via-pmu68k.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
35dfd8f879480cc93798d97ffcbff7eadf9e5f2e
diff --git a/drivers/macintosh/via-pmu68k.c b/drivers/macintosh/via-pmu68k.c
index 35b7032..50726d9 100644
--- a/drivers/macintosh/via-pmu68k.c
+++ b/drivers/macintosh/via-pmu68k.c
@@ -112,7 +112,6 @@ static int pmu_send_request(struct adb_r
static int pmu_autopoll(int devs);
void pmu_poll(void);
static int pmu_reset_bus(void);
-static int pmu_queue_request(struct adb_request *req);
static void pmu_start(void);
static void send_byte(int x);
@@ -477,7 +476,7 @@ pmu_request(struct adb_request *req, voi
return pmu_queue_request(req);
}
-static int
+int
pmu_queue_request(struct adb_request *req)
{
unsigned long flags;