Skip to content

Commit

Permalink
Place clock type values in the correct positon
Browse files Browse the repository at this point in the history
Signed-off-by: Dale P. Smith  <[email protected]>
  • Loading branch information
dalepsmith authored and richardcochran committed Jun 28, 2013
1 parent fa41be7 commit 6dedf8b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tlv.h
Original file line number Diff line number Diff line change
Expand Up @@ -183,11 +183,11 @@ struct time_status_np {
} PACKED;

enum clock_type {
CLOCK_TYPE_ORDINARY = 0x80,
CLOCK_TYPE_BOUNDARY = 0x40,
CLOCK_TYPE_P2P = 0x20,
CLOCK_TYPE_E2E = 0x10,
CLOCK_TYPE_MANAGEMENT = 0x08,
CLOCK_TYPE_ORDINARY = 0x8000,
CLOCK_TYPE_BOUNDARY = 0x4000,
CLOCK_TYPE_P2P = 0x2000,
CLOCK_TYPE_E2E = 0x1000,
CLOCK_TYPE_MANAGEMENT = 0x0800,
};

#define PROFILE_ID_LEN 6
Expand Down

0 comments on commit 6dedf8b

Please sign in to comment.