Deleted Added
full compact
twl.c (256281) twl.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/twl/twl.c 239281 2012-08-15 06:31:32Z gonzo $");
29__FBSDID("$FreeBSD: stable/10/sys/arm/ti/twl/twl.c 259329 2013-12-13 20:43:11Z ian $");
30
31/*
32 * Texas Instruments TWL4030/TWL5030/TWL60x0/TPS659x0 Power Management and
33 * Audio CODEC devices.
34 *
35 * This code is based on the Linux TWL multifunctional device driver, which is
36 * copyright (C) 2005-2006 Texas Instruments, Inc.
37 *

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

54#include <sys/rman.h>
55#include <sys/sysctl.h>
56#include <sys/mutex.h>
57#include <sys/malloc.h>
58
59#include <machine/bus.h>
60#include <machine/cpu.h>
61#include <machine/cpufunc.h>
30
31/*
32 * Texas Instruments TWL4030/TWL5030/TWL60x0/TPS659x0 Power Management and
33 * Audio CODEC devices.
34 *
35 * This code is based on the Linux TWL multifunctional device driver, which is
36 * copyright (C) 2005-2006 Texas Instruments, Inc.
37 *

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

54#include <sys/rman.h>
55#include <sys/sysctl.h>
56#include <sys/mutex.h>
57#include <sys/malloc.h>
58
59#include <machine/bus.h>
60#include <machine/cpu.h>
61#include <machine/cpufunc.h>
62#include <machine/frame.h>
63#include <machine/resource.h>
64#include <machine/intr.h>
65
66#include <dev/iicbus/iicbus.h>
67#include <dev/iicbus/iiconf.h>
68
69#include <dev/ofw/openfirm.h>
70#include <dev/ofw/ofw_bus.h>

--- 394 unchanged lines hidden ---
62#include <machine/resource.h>
63#include <machine/intr.h>
64
65#include <dev/iicbus/iicbus.h>
66#include <dev/iicbus/iiconf.h>
67
68#include <dev/ofw/openfirm.h>
69#include <dev/ofw/ofw_bus.h>

--- 394 unchanged lines hidden ---