diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2013-06-11 16:32:01 +0300 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2013-08-07 19:21:48 +0200 |
commit | 1fd750812193cbaab7f54696b97a91bf727e87e3 (patch) | |
tree | 449c9c17107908f00580a9feb18d9be64923966d /src/southbridge/nvidia/ck804 | |
parent | da940c58357eb45232d808a334879474c33be886 (diff) | |
download | coreboot-1fd750812193cbaab7f54696b97a91bf727e87e3.tar.xz |
usbdebug: Use __SIMPLE_DEVICE__ on early enable
With USBDEBUG selected, the file is built for both romstage and
ramstage. For the ramstage build, we need to explicitly use the
simple PCI config operations without devicetree.
Change-Id: I2de8d9c77bb458ba797c3aac9e2cd0d653e06684
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: http://review.coreboot.org/3437
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@google.com>
Diffstat (limited to 'src/southbridge/nvidia/ck804')
-rw-r--r-- | src/southbridge/nvidia/ck804/enable_usbdebug.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/southbridge/nvidia/ck804/enable_usbdebug.c b/src/southbridge/nvidia/ck804/enable_usbdebug.c index 659fdc68b1..54b534ee6a 100644 --- a/src/southbridge/nvidia/ck804/enable_usbdebug.c +++ b/src/southbridge/nvidia/ck804/enable_usbdebug.c @@ -21,6 +21,9 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +// Use simple device model for this file even in ramstage +#define __SIMPLE_DEVICE__ + #include <stdint.h> #include <arch/io.h> #include <usbdebug.h> |