fsl_gtm.c (bf61c8840efe60fd8f91446860b63338fb424158) fsl_gtm.c (26a2056eb21fff26caf99d19ad5448e9403db55d)
1/*
2 * Freescale General-purpose Timers Module
3 *
4 * Copyright (c) Freescale Semiconductor, Inc. 2006.
5 * Shlomi Gridish <gridish@freescale.com>
6 * Jerry Huang <Chang-Ming.Huang@freescale.com>
7 * Copyright (c) MontaVista Software, Inc. 2008.
8 * Anton Vorontsov <avorontsov@ru.mvista.com>

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

14 */
15
16#include <linux/kernel.h>
17#include <linux/err.h>
18#include <linux/errno.h>
19#include <linux/list.h>
20#include <linux/io.h>
21#include <linux/of.h>
1/*
2 * Freescale General-purpose Timers Module
3 *
4 * Copyright (c) Freescale Semiconductor, Inc. 2006.
5 * Shlomi Gridish <gridish@freescale.com>
6 * Jerry Huang <Chang-Ming.Huang@freescale.com>
7 * Copyright (c) MontaVista Software, Inc. 2008.
8 * Anton Vorontsov <avorontsov@ru.mvista.com>

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

14 */
15
16#include <linux/kernel.h>
17#include <linux/err.h>
18#include <linux/errno.h>
19#include <linux/list.h>
20#include <linux/io.h>
21#include <linux/of.h>
22#include <linux/of_address.h>
23#include <linux/of_irq.h>
22#include <linux/spinlock.h>
23#include <linux/bitops.h>
24#include <linux/slab.h>
25#include <linux/export.h>
26#include <asm/fsl_gtm.h>
27
28#define GTCFR_STP(x) ((x) & 1 ? 1 << 5 : 1 << 1)
29#define GTCFR_RST(x) ((x) & 1 ? 1 << 4 : 1 << 0)

--- 408 unchanged lines hidden ---
24#include <linux/spinlock.h>
25#include <linux/bitops.h>
26#include <linux/slab.h>
27#include <linux/export.h>
28#include <asm/fsl_gtm.h>
29
30#define GTCFR_STP(x) ((x) & 1 ? 1 << 5 : 1 << 1)
31#define GTCFR_RST(x) ((x) & 1 ? 1 << 4 : 1 << 0)

--- 408 unchanged lines hidden ---