Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

irda: replace __inline with inline

Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Harvey Harrison and committed by
David S. Miller
4eb329a5 dfec7228

+3 -3
+3 -3
include/net/irda/irttp.h
··· 169 169 void irttp_flow_request(struct tsap_cb *self, LOCAL_FLOW flow); 170 170 struct tsap_cb *irttp_dup(struct tsap_cb *self, void *instance); 171 171 172 - static __inline __u32 irttp_get_saddr(struct tsap_cb *self) 172 + static inline __u32 irttp_get_saddr(struct tsap_cb *self) 173 173 { 174 174 return irlmp_get_saddr(self->lsap); 175 175 } 176 176 177 - static __inline __u32 irttp_get_daddr(struct tsap_cb *self) 177 + static inline __u32 irttp_get_daddr(struct tsap_cb *self) 178 178 { 179 179 return irlmp_get_daddr(self->lsap); 180 180 } 181 181 182 - static __inline __u32 irttp_get_max_seg_size(struct tsap_cb *self) 182 + static inline __u32 irttp_get_max_seg_size(struct tsap_cb *self) 183 183 { 184 184 return self->max_seg_size; 185 185 }