common.c (79e24da00b1137031245f3341828e4215b1b5b59) | common.c (d17799f9c10e283cccd4d598d3416e6fac336ab9) |
---|---|
1/* 2 * Routines common to most mpc85xx-based boards. 3 * 4 * This is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU General Public License version 2 as 6 * published by the Free Software Foundation. 7 */ 8 9#include <linux/of_irq.h> 10#include <linux/of_platform.h> 11 | 1/* 2 * Routines common to most mpc85xx-based boards. 3 * 4 * This is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU General Public License version 2 as 6 * published by the Free Software Foundation. 7 */ 8 9#include <linux/of_irq.h> 10#include <linux/of_platform.h> 11 |
12#include <asm/fsl_pm.h> |
|
12#include <soc/fsl/qe/qe.h> 13#include <sysdev/cpm2_pic.h> 14 15#include "mpc85xx.h" 16 | 13#include <soc/fsl/qe/qe.h> 14#include <sysdev/cpm2_pic.h> 15 16#include "mpc85xx.h" 17 |
18const struct fsl_pm_ops *qoriq_pm_ops; 19 |
|
17static const struct of_device_id mpc85xx_common_ids[] __initconst = { 18 { .type = "soc", }, 19 { .compatible = "soc", }, 20 { .compatible = "simple-bus", }, 21 { .name = "cpm", }, 22 { .name = "localbus", }, 23 { .compatible = "gianfar", }, 24 { .compatible = "fsl,qe", }, --- 104 unchanged lines hidden --- | 20static const struct of_device_id mpc85xx_common_ids[] __initconst = { 21 { .type = "soc", }, 22 { .compatible = "soc", }, 23 { .compatible = "simple-bus", }, 24 { .name = "cpm", }, 25 { .name = "localbus", }, 26 { .compatible = "gianfar", }, 27 { .compatible = "fsl,qe", }, --- 104 unchanged lines hidden --- |