Skip to content
Snippets Groups Projects
Commit 21236959 authored by Florian Pose's avatar Florian Pose
Browse files

Fixed sync manager direction bug.

parent 320e0fd3
No related branches found
No related tags found
No related merge requests found
......@@ -152,7 +152,7 @@ ec_direction_t ec_sync_default_direction(
{
switch ((sync->control_register & 0x0C) >> 2) {
case 0x0: return EC_DIR_INPUT;
case 0x1: return EC_DIR_INPUT;
case 0x1: return EC_DIR_OUTPUT;
default: return EC_DIR_INVALID;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment