summaryrefslogtreecommitdiffstats
path: root/drivers/staging/brcm80211/sys/wlc_pub.h
diff options
context:
space:
mode:
authorGreg Kroah-Hartman2010-10-05 18:40:02 +0200
committerGreg Kroah-Hartman2010-10-05 18:40:02 +0200
commit2d956e2221929103031f217fd666a10edd05f3a0 (patch)
treefcd3cc867dec997b97adb18cdd164e43211cf993 /drivers/staging/brcm80211/sys/wlc_pub.h
parentStaging: brcm80211: remove UNUSED_PARAMETER macro (diff)
downloadkernel-qcow2-linux-2d956e2221929103031f217fd666a10edd05f3a0.tar.gz
kernel-qcow2-linux-2d956e2221929103031f217fd666a10edd05f3a0.tar.xz
kernel-qcow2-linux-2d956e2221929103031f217fd666a10edd05f3a0.zip
Staging: brcm80211: remove INLINE definition
Use the "real" inline marking for functions. Cc: Brett Rudley <brudley@broadcom.com> Cc: Henry Ptasinski <henryp@broadcom.com> Cc: Nohee Ko <noheek@broadcom.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/brcm80211/sys/wlc_pub.h')
-rw-r--r--drivers/staging/brcm80211/sys/wlc_pub.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/brcm80211/sys/wlc_pub.h b/drivers/staging/brcm80211/sys/wlc_pub.h
index 6cc884cbbb38..4354aef26ce6 100644
--- a/drivers/staging/brcm80211/sys/wlc_pub.h
+++ b/drivers/staging/brcm80211/sys/wlc_pub.h
@@ -569,19 +569,19 @@ extern uint16 wlc_rate_shm_offset(struct wlc_info *wlc, uint8 rate);
extern uint32 wlc_get_rspec_history(struct wlc_bsscfg *cfg);
extern uint32 wlc_get_current_highest_rate(struct wlc_bsscfg *cfg);
-static INLINE int wlc_iovar_getuint(struct wlc_info *wlc, const char *name,
+static inline int wlc_iovar_getuint(struct wlc_info *wlc, const char *name,
uint *arg)
{
return wlc_iovar_getint(wlc, name, (int *)arg);
}
-static INLINE int wlc_iovar_getuint8(struct wlc_info *wlc, const char *name,
+static inline int wlc_iovar_getuint8(struct wlc_info *wlc, const char *name,
uint8 *arg)
{
return wlc_iovar_getint8(wlc, name, (int8 *) arg);
}
-static INLINE int wlc_iovar_setuint(struct wlc_info *wlc, const char *name,
+static inline int wlc_iovar_setuint(struct wlc_info *wlc, const char *name,
uint arg)
{
return wlc_iovar_setint(wlc, name, (int)arg);