diff options
author | Nils Jacobs <njacobs8@hetnet.nl> | 2010-05-08 21:50:31 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2010-05-08 21:50:31 +0000 |
commit | d37ce2e28eaa7607442bf3670ed2daec3724dc24 (patch) | |
tree | 94f97e85ce82d726722e8791143ba0aa0f67f99d /src/mainboard/wyse/s50/mainboard.c | |
parent | 133887d540620d1c13cf3f3be0fdd46cd7adcff1 (diff) |
Add the Wyse S50 thin client to Coreboot.
Signed-off-by: Nils Jacobs <njacobs8@hetnet.nl>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5533 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/wyse/s50/mainboard.c')
-rw-r--r-- | src/mainboard/wyse/s50/mainboard.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/mainboard/wyse/s50/mainboard.c b/src/mainboard/wyse/s50/mainboard.c new file mode 100644 index 0000000000..ca13f66282 --- /dev/null +++ b/src/mainboard/wyse/s50/mainboard.c @@ -0,0 +1,12 @@ +#include <console/console.h> +#include <device/device.h> +#include <device/pci.h> +#include <device/pci_ids.h> +#include <device/pci_ops.h> +#include <arch/io.h> +#include "chip.h" + +struct chip_operations mainboard_ops = { + CHIP_NAME("WYSE S50 Mainboard") +}; + |