cpm1.c (22f8e625ebabd7ed3185b82b44b4f12fc0402113) | cpm1.c (e6f6390ab7b9d649c13de2c8a591bce61a10ec3b) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2/* 3 * General Purpose functions for the global management of the 4 * Communication Processor Module. 5 * Copyright (c) 1997 Dan error_act (dmalek@jlc.net) 6 * 7 * In addition to the individual control of the communication 8 * channels, there are a few functions that globally affect the --- 19 unchanged lines hidden (view full) --- 28#include <linux/param.h> 29#include <linux/string.h> 30#include <linux/mm.h> 31#include <linux/interrupt.h> 32#include <linux/irq.h> 33#include <linux/module.h> 34#include <linux/spinlock.h> 35#include <linux/slab.h> | 1// SPDX-License-Identifier: GPL-2.0 2/* 3 * General Purpose functions for the global management of the 4 * Communication Processor Module. 5 * Copyright (c) 1997 Dan error_act (dmalek@jlc.net) 6 * 7 * In addition to the individual control of the communication 8 * channels, there are a few functions that globally affect the --- 19 unchanged lines hidden (view full) --- 28#include <linux/param.h> 29#include <linux/string.h> 30#include <linux/mm.h> 31#include <linux/interrupt.h> 32#include <linux/irq.h> 33#include <linux/module.h> 34#include <linux/spinlock.h> 35#include <linux/slab.h> |
36#include <linux/of_irq.h> |
|
36#include <asm/page.h> 37#include <asm/8xx_immap.h> 38#include <asm/cpm1.h> 39#include <asm/io.h> 40#include <asm/rheap.h> | 37#include <asm/page.h> 38#include <asm/8xx_immap.h> 39#include <asm/cpm1.h> 40#include <asm/io.h> 41#include <asm/rheap.h> |
41#include <asm/prom.h> | |
42#include <asm/cpm.h> 43 44#include <asm/fs_pd.h> 45 46#ifdef CONFIG_8xx_GPIO 47#include <linux/of_gpio.h> 48#endif 49 --- 730 unchanged lines hidden --- | 42#include <asm/cpm.h> 43 44#include <asm/fs_pd.h> 45 46#ifdef CONFIG_8xx_GPIO 47#include <linux/of_gpio.h> 48#endif 49 --- 730 unchanged lines hidden --- |