Changeset 6b329749 in mainline
- Timestamp:
- 2012-03-30T13:24:02Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0b8a3e7
- Parents:
- a31ca11f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/time/rtc.c
ra31ca11f r6b329749 42 42 #include <ddf/log.h> 43 43 #include <ops/clock.h> 44 #include <fibril_synch.h> 44 45 45 46 #define NAME "RTC" … … 80 81 /** DDF function node */ 81 82 ddf_fun_t *fun; 83 /** The fibril mutex for synchronizing the access to the device */ 84 fibril_mutex_t mutex; 82 85 } rtc_t; 83 86 … … 117 120 rtc_dev_add(ddf_dev_t *dev) 118 121 { 122 rtc_t *rtc; 123 124 ddf_msg(LVL_DEBUG, "rtc_dev_add %s (handle = %d)", 125 dev->name, (int) dev->handle); 126 127 rtc = ddf_dev_data_alloc(dev, sizeof(rtc_t)); 128 if (!rtc) 129 return ENOMEM; 130 131 rtc->dev = dev; 132 fibril_mutex_initialize(&rtc->mutex); 133 119 134 return EOK; 120 135 }
Note:
See TracChangeset
for help on using the changeset viewer.