Commit a7d2ab20 authored by Jon Frisch's avatar Jon Frisch Committed by Greg Kroah-Hartman

staging: unisys: visornic: remove inline functions

This patch removes inline functions in visornic_main.c.
Signed-off-by: default avatarJon Frisch <jon.frisch@unisys.com>
Signed-off-by: default avatarDavid Kershner <david.kershner@unisys.com>
Reviewed-by: default avatarTim Sell <timothy.sell@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent bc043daa
...@@ -409,7 +409,7 @@ alloc_rcv_buf(struct net_device *netdev) ...@@ -409,7 +409,7 @@ alloc_rcv_buf(struct net_device *netdev)
* Send the skb to the IO Partition. * Send the skb to the IO Partition.
* Returns void * Returns void
*/ */
static inline void static void
post_skb(struct uiscmdrsp *cmdrsp, post_skb(struct uiscmdrsp *cmdrsp,
struct visornic_devdata *devdata, struct sk_buff *skb) struct visornic_devdata *devdata, struct sk_buff *skb)
{ {
...@@ -760,8 +760,8 @@ static unsigned long devdata_xmits_outstanding(struct visornic_devdata *devdata) ...@@ -760,8 +760,8 @@ static unsigned long devdata_xmits_outstanding(struct visornic_devdata *devdata)
* Returns true iff the number of unacked xmits sent to * Returns true iff the number of unacked xmits sent to
* the IO partition is >= high_watermark. * the IO partition is >= high_watermark.
*/ */
static inline bool vnic_hit_high_watermark(struct visornic_devdata *devdata, static bool vnic_hit_high_watermark(struct visornic_devdata *devdata,
ulong high_watermark) ulong high_watermark)
{ {
return (devdata_xmits_outstanding(devdata) >= high_watermark); return (devdata_xmits_outstanding(devdata) >= high_watermark);
} }
...@@ -776,8 +776,8 @@ static inline bool vnic_hit_high_watermark(struct visornic_devdata *devdata, ...@@ -776,8 +776,8 @@ static inline bool vnic_hit_high_watermark(struct visornic_devdata *devdata,
* Returns true iff the number of unacked xmits sent to * Returns true iff the number of unacked xmits sent to
* the IO partition is <= low_watermark. * the IO partition is <= low_watermark.
*/ */
static inline bool vnic_hit_low_watermark(struct visornic_devdata *devdata, static bool vnic_hit_low_watermark(struct visornic_devdata *devdata,
ulong low_watermark) ulong low_watermark)
{ {
return (devdata_xmits_outstanding(devdata) <= low_watermark); return (devdata_xmits_outstanding(devdata) <= low_watermark);
} }
...@@ -1067,7 +1067,7 @@ visornic_xmit_timeout(struct net_device *netdev) ...@@ -1067,7 +1067,7 @@ visornic_xmit_timeout(struct net_device *netdev)
* we are finished with them. * we are finished with them.
* Returns 0 for success, -1 for error. * Returns 0 for success, -1 for error.
*/ */
static inline int static int
repost_return(struct uiscmdrsp *cmdrsp, struct visornic_devdata *devdata, repost_return(struct uiscmdrsp *cmdrsp, struct visornic_devdata *devdata,
struct sk_buff *skb, struct net_device *netdev) struct sk_buff *skb, struct net_device *netdev)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment