diff options
author | Feng Tang <feng.tang@intel.com> | 2010-05-25 04:40:47 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2010-05-25 11:41:43 -0400 |
commit | 5487ab4a5a71e955fef7094a0624df0542da91ef (patch) | |
tree | 474021353de5a708998865406d2a7eec7060860c /drivers/sfi | |
parent | e40152ee1e1c7a63f4777791863215e3faa37a86 (diff) |
SFI: add support for v0.81 spec
There are 2 major changes from v0.81 to v0.7:
1. Consolidating the SPIB/I2CB tables into a new DEVS table,
which is more expandable and can support other bus types
than spi/i2c.
2. Creating a new GPIO table, which list all the GPIO pins
used in the platform.
However, to avoid breaking current platforms who use SFI v0.7
version firmware, the definitions for SPIB/I2CB will still
be kept for a while
Signed-off-by: Feng Tang <feng.tang@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/sfi')
-rw-r--r-- | drivers/sfi/sfi_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/sfi/sfi_core.c b/drivers/sfi/sfi_core.c index b204a0929139..aba6a461365b 100644 --- a/drivers/sfi/sfi_core.c +++ b/drivers/sfi/sfi_core.c | |||
@@ -390,7 +390,7 @@ void __init sfi_init(void) | |||
390 | if (sfi_disabled) | 390 | if (sfi_disabled) |
391 | return; | 391 | return; |
392 | 392 | ||
393 | pr_info("Simple Firmware Interface v0.7 http://simplefirmware.org\n"); | 393 | pr_info("Simple Firmware Interface v0.81 http://simplefirmware.org\n"); |
394 | 394 | ||
395 | if (sfi_find_syst() || sfi_parse_syst() || sfi_platform_init()) | 395 | if (sfi_find_syst() || sfi_parse_syst() || sfi_platform_init()) |
396 | disable_sfi(); | 396 | disable_sfi(); |