summaryrefslogtreecommitdiff
path: root/src/mainboard/asus/m2v/mainboard.c
diff options
context:
space:
mode:
authorTobias Diedrich <ranma+coreboot@tdiedrich.de>2010-11-07 20:08:45 +0000
committerRudolf Marek <r.marek@assembler.cz>2010-11-07 20:08:45 +0000
commit4e6305f4abd12bdc0a091d16bc091774f72aa55c (patch)
tree464f34fdbfff1360a60c14708de8cc8e9cc10de2 /src/mainboard/asus/m2v/mainboard.c
parent4a6dfebf39c3de9140d3b0923a0043010680535d (diff)
downloadcoreboot-4e6305f4abd12bdc0a091d16bc091774f72aa55c.tar.xz
Should be part of 6044. I forgot to add the directory :/
This adds the m2v directory and necessary files to src/mainboards/asus and adjusts the Kconfig. Signed-off-by: Tobias Diedrich <ranma+coreboot@tdiedrich.de> Acked-by: Rudolf Marek <r.marek@assembler.cz> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6045 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/asus/m2v/mainboard.c')
-rw-r--r--src/mainboard/asus/m2v/mainboard.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/mainboard/asus/m2v/mainboard.c b/src/mainboard/asus/m2v/mainboard.c
new file mode 100644
index 0000000000..b1ac998ccb
--- /dev/null
+++ b/src/mainboard/asus/m2v/mainboard.c
@@ -0,0 +1,25 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2010 Tobias Diedrich <ranma+coreboot@tdiedrich.de>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#include <device/device.h>
+#include "chip.h"
+
+struct chip_operations mainboard_ops = {
+ CHIP_NAME("ASUS M2V")
+};