Changeset 8e7c9fe in mainline for uspace/srv/hid/input/port/adb.c
- Timestamp:
- 2014-09-12T03:45:25Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c53b58e
- Parents:
- 3eb0c85 (diff), 105d8d6 (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
-
uspace/srv/hid/input/port/adb.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/input/port/adb.c
r3eb0c85 r8e7c9fe 49 49 50 50 static int adb_port_init(kbd_dev_t *); 51 static void adb_port_yield(void); 52 static void adb_port_reclaim(void); 53 static void adb_port_write(uint8_t data); 51 static void adb_port_write(uint8_t); 54 52 55 53 kbd_port_ops_t adb_port = { 56 54 .init = adb_port_init, 57 .yield = adb_port_yield,58 .reclaim = adb_port_reclaim,59 55 .write = adb_port_write 60 56 }; … … 95 91 96 92 return EOK; 97 }98 99 static void adb_port_yield(void)100 {101 }102 103 static void adb_port_reclaim(void)104 {105 93 } 106 94
Note:
See TracChangeset
for help on using the changeset viewer.
