mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 14:24:11 +08:00
[PATCH] ieee1394: update #include directives in midlayer header files
Remove unnecessary includes, add missing includes. Use forward type declarations for some structs. Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de> Signed-off-by: Ben Collins <bcollins@ubuntu.com>
This commit is contained in:
parent
e1d118f16d
commit
de4394f13c
@ -1,12 +1,10 @@
|
||||
|
||||
#ifndef _IEEE1394_CSR_H
|
||||
#define _IEEE1394_CSR_H
|
||||
|
||||
#ifdef CONFIG_PREEMPT
|
||||
#include <linux/sched.h>
|
||||
#endif
|
||||
#include <linux/spinlock_types.h>
|
||||
|
||||
#include "csr1212.h"
|
||||
#include "ieee1394_types.h"
|
||||
|
||||
#define CSR_REGISTER_BASE 0xfffff0000000ULL
|
||||
|
||||
|
@ -7,10 +7,13 @@
|
||||
* directory of the kernel sources for details.
|
||||
*/
|
||||
|
||||
#include <linux/module.h>
|
||||
#include <linux/vmalloc.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/mm.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/pci.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/vmalloc.h>
|
||||
#include <asm/scatterlist.h>
|
||||
|
||||
#include "dma.h"
|
||||
|
||||
/* dma_prog_region */
|
||||
|
@ -10,8 +10,11 @@
|
||||
#ifndef IEEE1394_DMA_H
|
||||
#define IEEE1394_DMA_H
|
||||
|
||||
#include <linux/pci.h>
|
||||
#include <asm/scatterlist.h>
|
||||
#include <asm/types.h>
|
||||
|
||||
struct pci_dev;
|
||||
struct scatterlist;
|
||||
struct vm_area_struct;
|
||||
|
||||
/**
|
||||
* struct dma_prog_region - small contiguous DMA buffer
|
||||
|
@ -110,15 +110,15 @@
|
||||
#include <linux/compat.h>
|
||||
#include <linux/cdev.h>
|
||||
|
||||
#include "ieee1394.h"
|
||||
#include "ieee1394_types.h"
|
||||
#include "nodemgr.h"
|
||||
#include "hosts.h"
|
||||
#include "ieee1394_core.h"
|
||||
#include "highlevel.h"
|
||||
#include "dv1394.h"
|
||||
#include "dv1394-private.h"
|
||||
|
||||
#include "highlevel.h"
|
||||
#include "hosts.h"
|
||||
#include "ieee1394.h"
|
||||
#include "ieee1394_core.h"
|
||||
#include "ieee1394_hotplug.h"
|
||||
#include "ieee1394_types.h"
|
||||
#include "nodemgr.h"
|
||||
#include "ohci1394.h"
|
||||
|
||||
/* DEBUG LEVELS:
|
||||
|
@ -67,16 +67,17 @@
|
||||
#include <asm/semaphore.h>
|
||||
#include <net/arp.h>
|
||||
|
||||
#include "config_roms.h"
|
||||
#include "csr1212.h"
|
||||
#include "ieee1394_types.h"
|
||||
#include "ieee1394_core.h"
|
||||
#include "ieee1394_transactions.h"
|
||||
#include "ieee1394.h"
|
||||
#include "eth1394.h"
|
||||
#include "highlevel.h"
|
||||
#include "ieee1394.h"
|
||||
#include "ieee1394_core.h"
|
||||
#include "ieee1394_hotplug.h"
|
||||
#include "ieee1394_transactions.h"
|
||||
#include "ieee1394_types.h"
|
||||
#include "iso.h"
|
||||
#include "nodemgr.h"
|
||||
#include "eth1394.h"
|
||||
#include "config_roms.h"
|
||||
|
||||
#define ETH1394_PRINT_G(level, fmt, args...) \
|
||||
printk(level "%s: " fmt, driver_name, ## args)
|
||||
|
@ -1,6 +1,16 @@
|
||||
#ifndef IEEE1394_HIGHLEVEL_H
|
||||
#define IEEE1394_HIGHLEVEL_H
|
||||
|
||||
#include <linux/list.h>
|
||||
#include <linux/spinlock_types.h>
|
||||
#include <linux/types.h>
|
||||
|
||||
struct module;
|
||||
|
||||
#include "ieee1394_types.h"
|
||||
|
||||
struct hpsb_host;
|
||||
|
||||
/* internal to ieee1394 core */
|
||||
struct hpsb_address_serve {
|
||||
struct list_head host_list; /* per host list */
|
||||
|
@ -2,17 +2,19 @@
|
||||
#define _IEEE1394_HOSTS_H
|
||||
|
||||
#include <linux/device.h>
|
||||
#include <linux/wait.h>
|
||||
#include <linux/list.h>
|
||||
#include <linux/timer.h>
|
||||
#include <linux/skbuff.h>
|
||||
#include <linux/timer.h>
|
||||
#include <linux/types.h>
|
||||
#include <linux/workqueue.h>
|
||||
#include <asm/atomic.h>
|
||||
|
||||
#include <asm/semaphore.h>
|
||||
struct pci_dev;
|
||||
struct module;
|
||||
|
||||
#include "ieee1394_types.h"
|
||||
#include "csr.h"
|
||||
|
||||
|
||||
struct hpsb_packet;
|
||||
struct hpsb_iso;
|
||||
|
||||
|
@ -1,12 +1,16 @@
|
||||
|
||||
#ifndef _IEEE1394_CORE_H
|
||||
#define _IEEE1394_CORE_H
|
||||
|
||||
#include <linux/slab.h>
|
||||
#include <linux/device.h>
|
||||
#include <linux/fs.h>
|
||||
#include <linux/list.h>
|
||||
#include <linux/skbuff.h>
|
||||
#include <linux/types.h>
|
||||
#include <asm/atomic.h>
|
||||
#include <asm/semaphore.h>
|
||||
#include "hosts.h"
|
||||
|
||||
#include "hosts.h"
|
||||
#include "ieee1394_types.h"
|
||||
|
||||
struct hpsb_packet {
|
||||
/* This struct is basically read-only for hosts with the exception of
|
||||
|
@ -1,9 +1,8 @@
|
||||
#ifndef _IEEE1394_HOTPLUG_H
|
||||
#define _IEEE1394_HOTPLUG_H
|
||||
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/types.h>
|
||||
#include <linux/mod_devicetable.h>
|
||||
#include <linux/types.h>
|
||||
|
||||
/* Unit spec id and sw version entry for some protocols */
|
||||
#define AVC_UNIT_SPEC_ID_ENTRY 0x0000A02D
|
||||
|
@ -1,7 +1,12 @@
|
||||
#ifndef _IEEE1394_TRANSACTIONS_H
|
||||
#define _IEEE1394_TRANSACTIONS_H
|
||||
|
||||
#include "ieee1394_core.h"
|
||||
#include <linux/types.h>
|
||||
|
||||
#include "ieee1394_types.h"
|
||||
|
||||
struct hpsb_packet;
|
||||
struct hpsb_host;
|
||||
|
||||
int hpsb_get_tlabel(struct hpsb_packet *packet);
|
||||
void hpsb_free_tlabel(struct hpsb_packet *packet);
|
||||
|
@ -1,17 +1,14 @@
|
||||
|
||||
#ifndef _IEEE1394_TYPES_H
|
||||
#define _IEEE1394_TYPES_H
|
||||
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/types.h>
|
||||
#include <linux/list.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/spinlock.h>
|
||||
#include <linux/string.h>
|
||||
#include <linux/types.h>
|
||||
|
||||
#include <asm/semaphore.h>
|
||||
#include <asm/byteorder.h>
|
||||
|
||||
#include <asm/semaphore.h>
|
||||
|
||||
/* Transaction Label handling */
|
||||
struct hpsb_tlabel_pool {
|
||||
|
@ -9,8 +9,11 @@
|
||||
* directory of the kernel sources for details.
|
||||
*/
|
||||
|
||||
#include <linux/slab.h>
|
||||
#include <linux/pci.h>
|
||||
#include <linux/sched.h>
|
||||
#include <linux/slab.h>
|
||||
|
||||
#include "hosts.h"
|
||||
#include "iso.h"
|
||||
|
||||
void hpsb_iso_stop(struct hpsb_iso *iso)
|
||||
|
@ -12,9 +12,14 @@
|
||||
#ifndef IEEE1394_ISO_H
|
||||
#define IEEE1394_ISO_H
|
||||
|
||||
#include "hosts.h"
|
||||
#include <linux/spinlock_types.h>
|
||||
#include <asm/atomic.h>
|
||||
#include <asm/types.h>
|
||||
|
||||
#include "dma.h"
|
||||
|
||||
struct hpsb_host;
|
||||
|
||||
/* high-level ISO interface */
|
||||
|
||||
/*
|
||||
|
@ -21,13 +21,14 @@
|
||||
#include <linux/moduleparam.h>
|
||||
#include <asm/atomic.h>
|
||||
|
||||
#include "ieee1394_types.h"
|
||||
#include "csr.h"
|
||||
#include "highlevel.h"
|
||||
#include "hosts.h"
|
||||
#include "ieee1394.h"
|
||||
#include "ieee1394_core.h"
|
||||
#include "hosts.h"
|
||||
#include "ieee1394_hotplug.h"
|
||||
#include "ieee1394_types.h"
|
||||
#include "ieee1394_transactions.h"
|
||||
#include "highlevel.h"
|
||||
#include "csr.h"
|
||||
#include "nodemgr.h"
|
||||
|
||||
static int ignore_drivers;
|
||||
|
@ -21,9 +21,15 @@
|
||||
#define _IEEE1394_NODEMGR_H
|
||||
|
||||
#include <linux/device.h>
|
||||
#include "csr1212.h"
|
||||
#include <asm/types.h>
|
||||
|
||||
#include "ieee1394_core.h"
|
||||
#include "ieee1394_hotplug.h"
|
||||
#include "ieee1394_types.h"
|
||||
|
||||
struct csr1212_csr;
|
||||
struct csr1212_keyval;
|
||||
struct hpsb_host;
|
||||
struct ieee1394_device_id;
|
||||
|
||||
/* '1' '3' '9' '4' in ASCII */
|
||||
#define IEEE1394_BUSID_MAGIC __constant_cpu_to_be32(0x31333934)
|
||||
|
@ -44,14 +44,15 @@
|
||||
#include <linux/compat.h>
|
||||
|
||||
#include "csr1212.h"
|
||||
#include "ieee1394.h"
|
||||
#include "ieee1394_types.h"
|
||||
#include "ieee1394_core.h"
|
||||
#include "nodemgr.h"
|
||||
#include "hosts.h"
|
||||
#include "highlevel.h"
|
||||
#include "iso.h"
|
||||
#include "hosts.h"
|
||||
#include "ieee1394.h"
|
||||
#include "ieee1394_core.h"
|
||||
#include "ieee1394_hotplug.h"
|
||||
#include "ieee1394_transactions.h"
|
||||
#include "ieee1394_types.h"
|
||||
#include "iso.h"
|
||||
#include "nodemgr.h"
|
||||
#include "raw1394.h"
|
||||
#include "raw1394-private.h"
|
||||
|
||||
|
@ -49,16 +49,16 @@
|
||||
#include <linux/compat.h>
|
||||
#include <linux/cdev.h>
|
||||
|
||||
#include "ieee1394.h"
|
||||
#include "ieee1394_types.h"
|
||||
#include "hosts.h"
|
||||
#include "ieee1394_core.h"
|
||||
#include "highlevel.h"
|
||||
#include "video1394.h"
|
||||
#include "nodemgr.h"
|
||||
#include "dma.h"
|
||||
|
||||
#include "highlevel.h"
|
||||
#include "hosts.h"
|
||||
#include "ieee1394.h"
|
||||
#include "ieee1394_core.h"
|
||||
#include "ieee1394_hotplug.h"
|
||||
#include "ieee1394_types.h"
|
||||
#include "nodemgr.h"
|
||||
#include "ohci1394.h"
|
||||
#include "video1394.h"
|
||||
|
||||
#define ISO_CHANNELS 64
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user