Changeset aa85487 in mainline for uspace/srv/net/net/net.c
- Timestamp:
- 2010-03-07T15:11:56Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade
- Children:
- aadf01e
- Parents:
- 2e99277 (diff), 137691a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/net/net.c
r2e99277 raa85487 154 154 * @returns Other error codes as defined for the add_configuration() function. 155 155 */ 156 int read_netif_configuration( c har * name, netif_ref netif );156 int read_netif_configuration( const char * name, netif_ref netif ); 157 157 158 158 /** Networking module global data. … … 413 413 } 414 414 415 int read_netif_configuration( c har * name, netif_ref netif ){415 int read_netif_configuration( const char * name, netif_ref netif ){ 416 416 // read the netif configuration file 417 417 return read_configuration_file( CONF_DIR, name, & netif->configuration ); … … 485 485 486 486 #ifdef CONFIG_NETIF_DP8390 487 c har * conf_files[] = { "lo", "ne2k" };487 const char * conf_files[] = { "lo", "ne2k" }; 488 488 #else 489 c har * conf_files[] = { "lo" };489 const char * conf_files[] = { "lo" }; 490 490 #endif 491 491
Note:
See TracChangeset
for help on using the changeset viewer.