blob: d049a30d2c4de171996273ab4c5ccd97d12bb6aa [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001From 1e5926df74a35fe2cd90bc59f5264a8715c94048 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Mon, 7 Sep 2015 08:16:59 +0000
4Subject: [PATCH] as10k1: Make output_tram_line() static inline
5
6The function is not used in any other file, its better to make it static
7inline so compiler has a better chance of optimizing here
8
9Signed-off-by: Khem Raj <raj.khem@gmail.com>
10---
11Upstream-Status: Pending
12
13 as10k1/as10k1.c | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16diff --git a/as10k1/as10k1.c b/as10k1/as10k1.c
17index 96af0c3..d0766fd 100644
18--- a/as10k1/as10k1.c
19+++ b/as10k1/as10k1.c
20@@ -366,7 +366,7 @@ void as_exit(const char *message)
21 exit(1);
22 }
23
24-inline void output_tram_line( struct list_head *line_head, int type){
25+static inline void output_tram_line( struct list_head *line_head, int type){
26
27 struct tram *tram_sym;
28 struct list_head *entry;
29--
302.5.1
31