diff options
author | David Kershner <david.kershner@unisys.com> | 2017-04-18 16:55:02 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-04-28 11:49:51 +0200 |
commit | 54149b4c1458ec9a70788f66fe0f02790639f216 (patch) | |
tree | 5b486c318868dab3dde51da696c96fa02c4d8d95 /drivers/staging/unisys | |
parent | 4c0e65f83a933ec86b0c22c973e1a0363b30a176 (diff) | |
download | blackbird-op-linux-54149b4c1458ec9a70788f66fe0f02790639f216.tar.gz blackbird-op-linux-54149b4c1458ec9a70788f66fe0f02790639f216.zip |
staging: unisys: visornic: remove keyword inline from function
Functions in c files don't need to be inlined, get rid of the keyword.
Signed-off-by: David Kershner <david.kershner@unisys.com>
Reviewed-by: Tim Sell <timothy.sell@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/unisys')
-rw-r--r-- | drivers/staging/unisys/visornic/visornic_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/unisys/visornic/visornic_main.c b/drivers/staging/unisys/visornic/visornic_main.c index 1008337473a8..adebf224f73a 100644 --- a/drivers/staging/unisys/visornic/visornic_main.c +++ b/drivers/staging/unisys/visornic/visornic_main.c @@ -142,7 +142,7 @@ struct visornic_devdata { }; /* Returns next non-zero index on success or 0 on failure (i.e. out of room). */ -static inline u16 +static u16 add_physinfo_entries(u64 inp_pfn, u16 inp_off, u32 inp_len, u16 index, u16 max_pi_arr_entries, struct phys_info pi_arr[]) { |