autoport: Remove '-' from Kconfig options

This won't compile since '-' is an operator in C.

Change-Id: Icf900c959cbcbd0b07cd83a1f6866bf255fdcf01
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/23321
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Christoph Pomaska <cp_public@posteo.de>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
This commit is contained in:
Arthur Heymans 2018-01-18 22:20:25 +01:00
parent 7214141f5e
commit c8c3aca818
1 changed files with 1 additions and 0 deletions

View File

@ -147,6 +147,7 @@ func sanitize(inp string) string {
result := strings.ToLower(inp) result := strings.ToLower(inp)
result = strings.Replace(result, " ", "_", -1) result = strings.Replace(result, " ", "_", -1)
result = strings.Replace(result, ",", "_", -1) result = strings.Replace(result, ",", "_", -1)
result = strings.Replace(result, "-", "_", -1)
for strings.HasSuffix(result, ".") { for strings.HasSuffix(result, ".") {
result = result[0 : len(result)-1] result = result[0 : len(result)-1]
} }