diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2016-10-07 18:22:44 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-11-09 23:09:32 +0100 |
commit | ec16e9302bfc362e57e3c5d746dfcaf716537d84 (patch) | |
tree | aea6d890812e71769a76f3f52f7a527ccbf3b707 /src/mainboard/roda/rk9 | |
parent | 5db945062c3dc083383f1ed1d1c711ae63ad338f (diff) |
mainboard/roda: Use C89 comments style & remove commented code
Change-Id: I4ce2705a8a07d0388bbdb459b63b59fc10a3aa39
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/16929
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/mainboard/roda/rk9')
-rw-r--r-- | src/mainboard/roda/rk9/hda_verb.c | 6 | ||||
-rw-r--r-- | src/mainboard/roda/rk9/romstage.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/mainboard/roda/rk9/hda_verb.c b/src/mainboard/roda/rk9/hda_verb.c index 8a102ea0a9..a7d26987ce 100644 --- a/src/mainboard/roda/rk9/hda_verb.c +++ b/src/mainboard/roda/rk9/hda_verb.c @@ -18,9 +18,9 @@ const u32 cim_verb_data[] = { /* coreboot specific header */ - 0x10ec0262, // Codec Vendor / Device ID: Realtek ALC262 - 0x43528986, // Subsystem ID - 0x0000000c, // Number of entries + 0x10ec0262, /* Codec Vendor / Device ID: Realtek ALC262 */ + 0x43528986, /* Subsystem ID */ + 0x0000000c, /* Number of entries */ /* Pin Widget Verb Table */ diff --git a/src/mainboard/roda/rk9/romstage.c b/src/mainboard/roda/rk9/romstage.c index fc0c8d31fb..df749b9485 100644 --- a/src/mainboard/roda/rk9/romstage.c +++ b/src/mainboard/roda/rk9/romstage.c @@ -14,7 +14,7 @@ * GNU General Public License for more details. */ -// __PRE_RAM__ means: use "unsigned" for device, not a struct. +/* __PRE_RAM__ means: use "unsigned" for device, not a struct. */ #include <stdint.h> #include <string.h> |