UPSTREAM: src/include: Remove use of binary constants

Fix the following warning detected by checkpatch.pl:

WARNING: Avoid gcc v4.3+ binary constant extension: <...>

TEST=Build and run on Galileo Gen2

Change-Id: I5e9818d90b3f03ebd93615d76947b7f1ff486d36
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Original-Commit-Id: f0c8a8eb55
Original-Change-Id: Iab29c494060df3f60eff5317259e0fdbfea06f27
Original-Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com>
Original-Reviewed-on: https://review.coreboot.org/18685
Original-Tested-by: build bot (Jenkins)
Original-Reviewed-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://chromium-review.googlesource.com/454557
This commit is contained in:
Lee Leahy 2017-03-08 10:11:37 -08:00 committed by chrome-bot
commit 7174c14f64

View file

@ -25,10 +25,10 @@
*/
enum AzaliaPinCfgPortConnectivity {
AZALIA_PINCFG_PORT_JACK = 0b00,
AZALIA_PINCFG_PORT_NC = 0b01,
AZALIA_PINCFG_PORT_FIXED = 0b10,
AZALIA_PINCFG_PORT_MULTIPLE = 0b11,
AZALIA_PINCFG_PORT_JACK = 0,
AZALIA_PINCFG_PORT_NC = 1,
AZALIA_PINCFG_PORT_FIXED = 2,
AZALIA_PINCFG_PORT_MULTIPLE = 3,
};
enum AzaliaPinCfgLocationGross {