mainboard/siemens/sitemp_g1p1/mainboard.c: Remove unicode in string
Remove illegal character encoding in string literal. Change-Id: I3c8dc67363705a2160e8266d1cea78c0d34d076f Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Reviewed-on: http://review.coreboot.org/7713 Tested-by: build bot (Jenkins) Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
This commit is contained in:
parent
5d0601767f
commit
a3a722c5fc
|
@ -190,15 +190,15 @@ struct __table__ dutycycles[] = {
|
|||
#define DUTYCYCLE_INFO(i) (i < SIZEOF_DUTYCYCLES) ? dutycycles[i].info : "out_of_range"
|
||||
#if TWOS_COMPL == 0
|
||||
struct __table__ temperatures[] = {
|
||||
{"30ーC", 0x5e},{"35ーC", 0x63},{"40ーC", 0x68},{"45ーC", 0x6d},{"50ーC", 0x72},
|
||||
{"55ーC", 0x77},{"60ーC", 0x7c},{"65ーC", 0x81},{"70ーC", 0x86},{"75ーC", 0x8b},
|
||||
{"80ーC", 0x90}
|
||||
{"30C", 0x5e},{"35C", 0x63},{"40C", 0x68},{"45C", 0x6d},{"50C", 0x72},
|
||||
{"55C", 0x77},{"60C", 0x7c},{"65C", 0x81},{"70C", 0x86},{"75C", 0x8b},
|
||||
{"80C", 0x90}
|
||||
};
|
||||
#else
|
||||
struct __table__ temperatures[] = {
|
||||
{"30ーC", 30},{"35ーC", 35},{"40ーC", 40},{"45ーC", 45},{"50ーC", 50},
|
||||
{"55ーC", 55},{"60ーC", 60},{"65ーC", 65},{"70ーC", 70},{"75ーC", 75},
|
||||
{"80ーC", 80}
|
||||
{"30C", 30},{"35C", 35},{"40C", 40},{"45C", 45},{"50C", 50},
|
||||
{"55C", 55},{"60C", 60},{"65C", 65},{"70C", 70},{"75C", 75},
|
||||
{"80C", 80}
|
||||
};
|
||||
#endif
|
||||
int trange[] = {2.0,2.5,3.33,4.0,5.0,6.67,8.0,10.0,13.33,16.0,20.0,26.67,32.0,40.0,53.33,80.0};
|
||||
|
|
Loading…
Reference in New Issue