]> bbs.cooldavid.org Git - jme.git/commitdiff
drivers/net/*.c: Use static const
authorJoe Perches <joe@perches.com>
Tue, 21 Dec 2010 10:16:08 +0000 (02:16 -0800)
committerGuo-Fu Tseng <cooldavid@cooldavid.org>
Sat, 12 Feb 2011 17:57:11 +0000 (01:57 +0800)
Using static const generally increases object text and decreases data size.
It also generally decreases overall object size.

Signed-off-by: Joe Perches <joe@perches.com>
jme.c

diff --git a/jme.c b/jme.c
index 2411e72ba572d00f6a76646e0f7a34da500f7e53..e97ebef3cf47c140a5fb5925d3e47bacbe262aad 100644 (file)
--- a/jme.c
+++ b/jme.c
@@ -135,7 +135,7 @@ jme_reset_phy_processor(struct jme_adapter *jme)
 
 static void
 jme_setup_wakeup_frame(struct jme_adapter *jme,
 
 static void
 jme_setup_wakeup_frame(struct jme_adapter *jme,
-               u32 *mask, u32 crc, int fnr)
+                      const u32 *mask, u32 crc, int fnr)
 {
        int i;
 
 {
        int i;
 
@@ -163,7 +163,7 @@ jme_setup_wakeup_frame(struct jme_adapter *jme,
 static inline void
 jme_reset_mac_processor(struct jme_adapter *jme)
 {
 static inline void
 jme_reset_mac_processor(struct jme_adapter *jme)
 {
-       u32 mask[WAKEUP_FRAME_MASK_DWNR] = {0, 0, 0, 0};
+       static const u32 mask[WAKEUP_FRAME_MASK_DWNR] = {0, 0, 0, 0};
        u32 crc = 0xCDCDCDCD;
        u32 gpreg0;
        int i;
        u32 crc = 0xCDCDCDCD;
        u32 gpreg0;
        int i;