Skip to content

Commit

Permalink
ODROID: Fix compile error.
Browse files Browse the repository at this point in the history
Change-Id: I79375e9f5b0376ff6de79e5aab5299ac6061c71c
  • Loading branch information
codewalkerster committed Feb 19, 2021
1 parent 87a03db commit b112cd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions board/hardkernel/odroid-common/board.c
Original file line number Diff line number Diff line change
Expand Up @@ -125,15 +125,15 @@ int board_is_odroidc4(void)
{
int hwrev = board_revision();

return (hwrev == BOARD_REVISION(2019, 11, 29)
return (hwrev == BOARD_REVISION(2019, 11, 29))
|| (hwrev == BOARD_REVISION(2020, 1, 29));
}

int board_is_odroidhc4(void)
{
int hwrev = board_revision();

return (hwrev == BOARD_REVISION(2019, 12, 10)
return (hwrev == BOARD_REVISION(2019, 12, 10))
|| (hwrev == BOARD_REVISION(2020, 8, 7));
}
#endif

0 comments on commit b112cd2

Please sign in to comment.