From: Adam Charytoniuk Date: Mon, 26 Mar 2018 15:28:31 +0000 (+0100) Subject: Bugfix: fixing trivial typo in enum value definition for A53. (#394) X-Git-Tag: submit/tizen/20180418.060816~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3dd034f2356319ee1cff6bcad5c58ed8611ae26e;p=platform%2Fupstream%2Farmcl.git Bugfix: fixing trivial typo in enum value definition for A53. (#394) --- diff --git a/arm_compute/core/CPP/CPPTypes.h b/arm_compute/core/CPP/CPPTypes.h index cff49db0a..1e5439146 100644 --- a/arm_compute/core/CPP/CPPTypes.h +++ b/arm_compute/core/CPP/CPPTypes.h @@ -39,7 +39,7 @@ enum class CPUTarget A5x = 0x0050, DOT = 0x1000, - A53 = (ARMV8 | A7x | 0x3), + A53 = (ARMV8 | A5x | 0x3), A55 = (ARMV8_2 | A5x | 0x5), A55_DOT = (A55 | DOT), A72 = (ARMV8 | A7x | 0x2),