Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/platform/msim/msim.c

    r19d2ce01 r7de5f12  
    6565static void msim_init(void);
    6666
    67 /** Standard driver operations. */
     67/** The root device driver's standard operations. */
    6868static driver_ops_t msim_ops = {
    6969        .dev_add = &msim_dev_add
    7070};
    7171
    72 /** Driver structure. */
     72/** The root device driver structure. */
    7373static driver_t msim_driver = {
    7474        .name = NAME,
     
    194194       
    195195        msim_fun_t *fun = ddf_fun_data_alloc(fnode, sizeof(msim_fun_t));
    196         if (fun == NULL)
    197                 goto failure;
    198        
    199196        *fun = *fun_proto;
    200197       
     
    233230}
    234231
    235 /** Add MSIM platform device.
    236  *
    237  * @param dev DDF device
    238  * @return Zero on success or non-zero error code.
     232/** Get the root device.
     233 *
     234 * @param dev           The device which is root of the whole device tree (both
     235 *                      of HW and pseudo devices).
     236 * @return              Zero on success, negative error number otherwise.
    239237 */
    240238static int msim_dev_add(ddf_dev_t *dev)
Note: See TracChangeset for help on using the changeset viewer.