diff options
author | Per Liden <per.liden@ericsson.com> | 2006-01-17 18:38:21 -0500 |
---|---|---|
committer | Per Liden <per.liden@ericsson.com> | 2006-01-17 18:45:16 -0500 |
commit | 4323add67792ced172d0d93b8b2e6187023115f1 (patch) | |
tree | 13224010f6f18029fb710a1e0b48392aea90b486 /net/tipc/eth_media.c | |
parent | 1e63e681e06d438fdc542d40924a4f155d461bbd (diff) |
[TIPC] Avoid polluting the global namespace
This patch adds a tipc_ prefix to all externally visible symbols.
Signed-off-by: Per Liden <per.liden@ericsson.com>
Diffstat (limited to 'net/tipc/eth_media.c')
-rw-r--r-- | net/tipc/eth_media.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/tipc/eth_media.c b/net/tipc/eth_media.c index cb507c4b7e6e..1f8d83b9c8b4 100644 --- a/net/tipc/eth_media.c +++ b/net/tipc/eth_media.c | |||
@@ -238,13 +238,13 @@ static char *eth_addr2str(struct tipc_media_addr *a, char *str_buf, int str_size | |||
238 | } | 238 | } |
239 | 239 | ||
240 | /** | 240 | /** |
241 | * eth_media_start - activate Ethernet bearer support | 241 | * tipc_eth_media_start - activate Ethernet bearer support |
242 | * | 242 | * |
243 | * Register Ethernet media type with TIPC bearer code. Also register | 243 | * Register Ethernet media type with TIPC bearer code. Also register |
244 | * with OS for notifications about device state changes. | 244 | * with OS for notifications about device state changes. |
245 | */ | 245 | */ |
246 | 246 | ||
247 | int eth_media_start(void) | 247 | int tipc_eth_media_start(void) |
248 | { | 248 | { |
249 | struct tipc_media_addr bcast_addr; | 249 | struct tipc_media_addr bcast_addr; |
250 | int res; | 250 | int res; |
@@ -271,10 +271,10 @@ int eth_media_start(void) | |||
271 | } | 271 | } |
272 | 272 | ||
273 | /** | 273 | /** |
274 | * eth_media_stop - deactivate Ethernet bearer support | 274 | * tipc_eth_media_stop - deactivate Ethernet bearer support |
275 | */ | 275 | */ |
276 | 276 | ||
277 | void eth_media_stop(void) | 277 | void tipc_eth_media_stop(void) |
278 | { | 278 | { |
279 | int i; | 279 | int i; |
280 | 280 | ||