nds32: Fix the items of hwcap_str ordering issue.

The hwcap_str should be set in a correct order according to HWCAP_xx.
We also add the missing "fpu_dp" to it.

Signed-off-by: Nylon Chen <nylon7@andestech.com>
Acked-by: Greentime Hu <greentime@andestech.com>
Signed-off-by: Greentime Hu <greentime@andestech.com>
This commit is contained in:
Nylon Chen 2018-11-08 19:28:05 +08:00 коммит произвёл Greentime Hu
Родитель 83312f1b7a
Коммит a5234068e6
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -72,8 +72,9 @@ static const char *hwcap_str[] = {
"div",
"mac",
"l2c",
"dx_regs",
"fpu_dp",
"v2",
"dx_regs",
NULL,
};