Deleted Added
full compact
ti_cpuid.c (256281) ti_cpuid.c (259329)
1/*-
2 * Copyright (c) 2011
3 * Ben Gray <ben.r.gray@gmail.com>.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 12 unchanged lines hidden (view full) ---

21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 */
27
28#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2011
3 * Ben Gray <ben.r.gray@gmail.com>.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 12 unchanged lines hidden (view full) ---

21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 */
27
28#include <sys/cdefs.h>
29__FBSDID("$FreeBSD: stable/10/sys/arm/ti/ti_cpuid.c 246850 2013-02-15 21:24:21Z gonzo $");
29__FBSDID("$FreeBSD: stable/10/sys/arm/ti/ti_cpuid.c 259329 2013-12-13 20:43:11Z ian $");
30
31#include <sys/param.h>
32#include <sys/systm.h>
33#include <sys/kernel.h>
34#include <sys/module.h>
35#include <sys/bus.h>
36#include <sys/resource.h>
37#include <sys/rman.h>
38#include <sys/lock.h>
39#include <sys/mutex.h>
40
41#include <machine/bus.h>
42#include <machine/fdt.h>
43#include <machine/cpu.h>
44#include <machine/cpufunc.h>
30
31#include <sys/param.h>
32#include <sys/systm.h>
33#include <sys/kernel.h>
34#include <sys/module.h>
35#include <sys/bus.h>
36#include <sys/resource.h>
37#include <sys/rman.h>
38#include <sys/lock.h>
39#include <sys/mutex.h>
40
41#include <machine/bus.h>
42#include <machine/fdt.h>
43#include <machine/cpu.h>
44#include <machine/cpufunc.h>
45#include <machine/frame.h>
46#include <machine/resource.h>
47#include <machine/intr.h>
48
49#include <arm/ti/tivar.h>
50#include <arm/ti/ti_cpuid.h>
51
52#include <arm/ti/omap4/omap4_reg.h>
53#include <arm/ti/omap3/omap3_reg.h>

--- 278 unchanged lines hidden ---
45#include <machine/resource.h>
46#include <machine/intr.h>
47
48#include <arm/ti/tivar.h>
49#include <arm/ti/ti_cpuid.h>
50
51#include <arm/ti/omap4/omap4_reg.h>
52#include <arm/ti/omap3/omap3_reg.h>

--- 278 unchanged lines hidden ---