From dd5979ab4330d8677ad250ec4afcd7cb10c83cbc Mon Sep 17 00:00:00 2001 From: Nico Huber Date: Mon, 12 Nov 2012 16:59:24 +0100 Subject: libpayload: Use #ifdef for CONFIG_* checks Libpayload uses the linux kernel's config style, where CONFIG_* defines don't get written for unset tristates. Change-Id: I3f832cf86bca9a1e153d96af4bf6434a19eba2f6 Signed-off-by: Nico Huber Reviewed-on: http://review.coreboot.org/1847 Tested-by: build bot (Jenkins) Reviewed-by: Anton Kochkov Reviewed-by: Stefan Reinauer --- payloads/libpayload/include/sysinfo.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'payloads/libpayload/include/sysinfo.h') diff --git a/payloads/libpayload/include/sysinfo.h b/payloads/libpayload/include/sysinfo.h index bb5b2eea68..80763f0a46 100644 --- a/payloads/libpayload/include/sysinfo.h +++ b/payloads/libpayload/include/sysinfo.h @@ -57,7 +57,7 @@ struct sysinfo_t { u32 cmos_range_start; u32 cmos_range_end; u32 cmos_checksum_location; -#if CONFIG_CHROMEOS +#ifdef CONFIG_CHROMEOS u32 vbnv_start; u32 vbnv_size; #endif @@ -77,7 +77,7 @@ struct sysinfo_t { struct cb_framebuffer *framebuffer; -#if CONFIG_CHROMEOS +#ifdef CONFIG_CHROMEOS int num_gpios; struct cb_gpio gpios[SYSINFO_MAX_GPIOS]; #endif @@ -87,7 +87,7 @@ struct sysinfo_t { struct cb_header *header; struct cb_mainboard *mainboard; -#if CONFIG_CHROMEOS +#ifdef CONFIG_CHROMEOS void *vdat_addr; u32 vdat_size; #endif -- cgit v1.2.3