|
@@ -126,6 +126,13 @@ static void __init harmony_init(void)
|
|
|
}
|
|
|
#endif
|
|
|
|
|
|
+#ifdef CONFIG_MACH_PAZ00
|
|
|
+static void __init paz00_init(void)
|
|
|
+{
|
|
|
+ tegra_paz00_wifikill_init();
|
|
|
+}
|
|
|
+#endif
|
|
|
+
|
|
|
static struct {
|
|
|
char *machine;
|
|
|
void (*init)(void);
|
|
@@ -136,6 +143,9 @@ static struct {
|
|
|
#ifdef CONFIG_MACH_HARMONY
|
|
|
{ "nvidia,harmony", harmony_init },
|
|
|
#endif
|
|
|
+#ifdef CONFIG_MACH_PAZ00
|
|
|
+ { "compal,paz00", paz00_init },
|
|
|
+#endif
|
|
|
};
|
|
|
|
|
|
static void __init tegra_dt_init_late(void)
|