Changeset a582dff in mainline


Ignore:
Timestamp:
2012-10-31T21:20:17Z (11 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
35a3d950
Parents:
f220e25
Message:

Put the function back into the 'clock' category in rtc_fun_online().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/time/cmos-rtc/cmos-rtc.c

    rf220e25 ra582dff  
    745745rtc_fun_online(ddf_fun_t *fun)
    746746{
     747        int rc;
     748
    747749        ddf_msg(LVL_DEBUG, "rtc_fun_online()");
    748         return ddf_fun_online(fun);
     750
     751        rc = ddf_fun_online(fun);
     752        if (rc == EOK)
     753                ddf_fun_add_to_category(fun, "clock");
     754
     755        return rc;
    749756}
    750757
Note: See TracChangeset for help on using the changeset viewer.