Changeset 0f2a9be in mainline for uspace/drv/platform/malta/malta.c
- Timestamp:
- 2014-08-28T20:07:47Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- da5ba3a
- Parents:
- 2a37b9f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/platform/malta/malta.c
r2a37b9f r0f2a9be 29 29 30 30 /** 31 * @defgroup root_malta Malta board platform driver.31 * @defgroup malta Malta board platform driver. 32 32 * @brief HelenOS Malta board platform driver. 33 33 * @{ … … 78 78 79 79 static int malta_dev_add(ddf_dev_t *dev); 80 static void root_malta_init(void);80 static void malta_init(void); 81 81 82 82 /** The root device driver's standard operations. */ … … 167 167 }; 168 168 169 /* Initialized in root_malta_init() function. */169 /* Initialized in malta_init() function. */ 170 170 static ddf_dev_ops_t malta_fun_ops; 171 171 … … 255 255 } 256 256 257 static void root_malta_init(void)257 static void malta_init(void) 258 258 { 259 259 ddf_log_init(NAME); … … 265 265 { 266 266 printf(NAME ": HelenOS Malta platform driver\n"); 267 root_malta_init();267 malta_init(); 268 268 return ddf_driver_main(&malta_driver); 269 269 }
Note:
See TracChangeset
for help on using the changeset viewer.