qe.c (05d134b084590684bcf4d832c0035952727b7cd9) | qe.c (38d67a4e552ac991f21c2d3e442a38fb0098fda6) |
---|---|
1/* 2 * Copyright (C) 2006-2009 Freescale Semiconductor, Inc. 3 * 4 * Dave Liu <daveliu@freescale.com> 5 * based on source code of Shlomi Gridish 6 * 7 * SPDX-License-Identifier: GPL-2.0+ 8 */ 9 10#include "common.h" 11#include <command.h> 12#include "asm/errno.h" 13#include "asm/io.h" | 1/* 2 * Copyright (C) 2006-2009 Freescale Semiconductor, Inc. 3 * 4 * Dave Liu <daveliu@freescale.com> 5 * based on source code of Shlomi Gridish 6 * 7 * SPDX-License-Identifier: GPL-2.0+ 8 */ 9 10#include "common.h" 11#include <command.h> 12#include "asm/errno.h" 13#include "asm/io.h" |
14#include "asm/immap_qe.h" | 14#include "linux/immap_qe.h" |
15#include "qe.h" 16 17#define MPC85xx_DEVDISR_QE_DISABLE 0x1 18 19qe_map_t *qe_immr = NULL; 20static qe_snum_t snums[QE_NUM_OF_SNUM]; 21 22DECLARE_GLOBAL_DATA_PTR; --- 457 unchanged lines hidden --- | 15#include "qe.h" 16 17#define MPC85xx_DEVDISR_QE_DISABLE 0x1 18 19qe_map_t *qe_immr = NULL; 20static qe_snum_t snums[QE_NUM_OF_SNUM]; 21 22DECLARE_GLOBAL_DATA_PTR; --- 457 unchanged lines hidden --- |