diff options
author | Rudolf Marek <r.marek@assembler.cz> | 2008-02-18 20:43:09 +0000 |
---|---|---|
committer | Rudolf Marek <r.marek@assembler.cz> | 2008-02-18 20:43:09 +0000 |
commit | bb6f88d1d48ab9c5acb33ca4b80b15f7319161dd (patch) | |
tree | 9f445008a5e3db6f3a782215478c935f399a0aa4 /util | |
parent | bcd28f22f473f5ccced4bfc27f3964eeaac6013a (diff) | |
download | coreboot-bb6f88d1d48ab9c5acb33ca4b80b15f7319161dd.tar.xz |
Should be part of changeset 3106.
This patch introduces virtual LDNs changes for W83627EHF driver. Not only LDN 7 and 9 are
changed, but also a SPI flash interface which has enable on bit1 and not bit0.
Signed-off-by: Rudolf Marek <r.marek@assembler.cz>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3108 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util')
-rw-r--r-- | util/newconfig/config.g | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/newconfig/config.g b/util/newconfig/config.g index cdf8b9b39a..d8570c7bc6 100644 --- a/util/newconfig/config.g +++ b/util/newconfig/config.g @@ -923,7 +923,7 @@ class partobj: """ Add a relative path to a pnp device hanging off our parent """ if ((port < 0) or (port > 65536)): fatal("Invalid port") - if ((device < 0) or (device > 0xff)): + if ((device < 0) or (device > 0xffff)): fatal("Invalid device") self.set_path(".type=DEVICE_PATH_PNP,.u={.pnp={ .port = 0x%x, .device = 0x%x }}" % (port, device)) |