|
|
@@ -0,0 +1,22 @@
|
|
|
+/*
|
|
|
+ * Atheros AP81 board support
|
|
|
+ *
|
|
|
+ * Copyright (C) 2009 Gabor Juhos <[email protected]>
|
|
|
+ * Copyright (C) 2009 Imre Kaloz <[email protected]>
|
|
|
+ *
|
|
|
+ * This program is free software; you can redistribute it and/or modify it
|
|
|
+ * under the terms of the GNU General Public License version 2 as published
|
|
|
+ * by the Free Software Foundation.
|
|
|
+ */
|
|
|
+
|
|
|
+#include <asm/mips_machine.h>
|
|
|
+#include <asm/mach-ar71xx/ar71xx.h>
|
|
|
+
|
|
|
+#include "devices.h"
|
|
|
+
|
|
|
+static void __init ap81_setup(void)
|
|
|
+{
|
|
|
+ ar91xx_add_device_wmac();
|
|
|
+}
|
|
|
+
|
|
|
+MIPS_MACHINE(AR71XX_MACH_AP81, "Atheros AP81", ap81_setup);
|