diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2008-11-13 15:34:13 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-01-06 13:52:09 -0800 |
commit | e543c241412f5f68d6948968f1a6c2cbb5fad7ff (patch) | |
tree | 65bda7274823122a475c012458bfc96e799997e6 /drivers/staging/agnx | |
parent | aa0d6c34b6d44dcb14957cb768a13c8e4dd03729 (diff) |
Staging: agnx: fix build warnings
Fix some minor build warnins in the agnx driver
Cc: Li YanBo <dreamfly281@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/agnx')
-rw-r--r-- | drivers/staging/agnx/pci.c | 6 | ||||
-rw-r--r-- | drivers/staging/agnx/phy.c | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/drivers/staging/agnx/pci.c b/drivers/staging/agnx/pci.c index 80cccca974af..854630cb527e 100644 --- a/drivers/staging/agnx/pci.c +++ b/drivers/staging/agnx/pci.c @@ -207,7 +207,7 @@ static void rings_free(struct agnx_priv *priv) spin_unlock_irqrestore(&priv->lock, flags); } - +#if 0 static void agnx_periodic_work_handler(struct work_struct *work) { struct agnx_priv *priv = container_of(work, struct agnx_priv, @@ -233,12 +233,12 @@ static void agnx_periodic_work_handler(struct work_struct *work) // spin_unlock_irqrestore(&priv->lock, flags); } - +#endif static int agnx_start(struct ieee80211_hw *dev) { struct agnx_priv *priv = dev->priv; - unsigned long delay; + /* unsigned long delay; */ int err = 0; AGNX_TRACE; diff --git a/drivers/staging/agnx/phy.c b/drivers/staging/agnx/phy.c index 625d19287e66..da8f10c08382 100644 --- a/drivers/staging/agnx/phy.c +++ b/drivers/staging/agnx/phy.c @@ -723,6 +723,7 @@ static inline void set_adhoc_mode(struct agnx_priv *priv) agnx_write32(ctl, AGNX_SYSITF_SYSMODE, 0x0); } +#if 0 static void unknow_register_write(struct agnx_priv *priv) { void __iomem *ctl = priv->ctl; @@ -752,6 +753,7 @@ static void unknow_register_write(struct agnx_priv *priv) agnx_write32(ctl, AGNX_UNKNOWN_BASE + 0x58, 0x1F); agnx_write32(ctl, AGNX_UNKNOWN_BASE + 0x5c, 0x1a); } +#endif static void card_interface_init(struct agnx_priv *priv) { |