diff options
author | Martin Roth <martinroth@google.com> | 2017-11-17 09:25:02 -0700 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-11-19 01:43:04 +0000 |
commit | 1cdb6f2a1d6ddb1814719c77f539a061735f705a (patch) | |
tree | daf00f4b73f0fbbdab8b399d54a3f6dbaf20ad16 /src/mainboard/google/kahlee/variants/baseboard/include | |
parent | c09c2a4883a1278af0f758d73f4705a939197a68 (diff) |
mainboard/google/kahlee: Update memory.c
This fixes some issues with the initial implementation that was copied
from reef.
- The board ID value shouldn't be size_t - it's not a size.
- Kahlee doesn't even need the memory.c file - it uses an SoDIMM.
BUG=b:68293392
TEST=build stoney platforms, boot kahleebo
Change-Id: Ife5660d36912e887edfd0365a9f16c5a172c9c86
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/22515
Reviewed-by: Marc Jones <marc@marcjonesconsulting.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/kahlee/variants/baseboard/include')
-rw-r--r-- | src/mainboard/google/kahlee/variants/baseboard/include/baseboard/variants.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/kahlee/variants/baseboard/include/baseboard/variants.h b/src/mainboard/google/kahlee/variants/baseboard/include/baseboard/variants.h index b4e0891063..cf995fc59c 100644 --- a/src/mainboard/google/kahlee/variants/baseboard/include/baseboard/variants.h +++ b/src/mainboard/google/kahlee/variants/baseboard/include/baseboard/variants.h @@ -23,6 +23,6 @@ const GPIO_CONTROL *get_gpio_table(void); const struct sci_source *get_gpe_table(size_t *num); -size_t variant_board_id(void); +uint8_t variant_board_id(void); #endif /* __BASEBOARD_VARIANTS_H__ */ |