diff options
| author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-03-05 21:37:16 -0500 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2008-03-05 21:37:16 -0500 |
| commit | 4eb329a5aa113048ec9dbe2bd81ca27adab04e2d (patch) | |
| tree | 87fbc28a009012379fa29959a229532f12204183 /include | |
| parent | dfec72285ef50f1a5ff342ed122652ccd3d0fb96 (diff) | |
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>
Diffstat (limited to 'include')
| -rw-r--r-- | include/net/irda/irttp.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/net/irda/irttp.h b/include/net/irda/irttp.h index 32c385dd9e06..0788c23d2828 100644 --- a/include/net/irda/irttp.h +++ b/include/net/irda/irttp.h | |||
| @@ -169,17 +169,17 @@ int irttp_disconnect_request(struct tsap_cb *self, struct sk_buff *skb, | |||
| 169 | void irttp_flow_request(struct tsap_cb *self, LOCAL_FLOW flow); | 169 | void irttp_flow_request(struct tsap_cb *self, LOCAL_FLOW flow); |
| 170 | struct tsap_cb *irttp_dup(struct tsap_cb *self, void *instance); | 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 | return irlmp_get_saddr(self->lsap); | 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 | return irlmp_get_daddr(self->lsap); | 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 | return self->max_seg_size; | 184 | return self->max_seg_size; |
| 185 | } | 185 | } |
