[PATCH 08/21] gcc 4 fix

From: zippel
Date: Fri Jun 23 2006 - 14:40:33 EST


Fixes a "static qualifier follows non-static qualifier" error from gcc 4.

Signed-off-by: Finn Thain <fthain@xxxxxxxxxxxxxxxxxxx>
Signed-off-by: Roman Zippel <zippel@xxxxxxxxxxxxxx>

---

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;
--
1.3.3

--

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/