superhyway.c (1da177e4c3f41524e886b7f1b8a0c1fc7321cac2) superhyway.c (4e57b6817880946a3a78d5d8cad1ace363f7e449)
1/*
2 * drivers/sh/superhyway/superhyway.c
3 *
4 * SuperHyway Bus Driver
5 *
6 * Copyright (C) 2004, 2005 Paul Mundt <lethal@linux-sh.org>
7 *
8 * This file is subject to the terms and conditions of the GNU General Public
9 * License. See the file "COPYING" in the main directory of this archive
10 * for more details.
11 */
12#include <linux/kernel.h>
13#include <linux/device.h>
14#include <linux/init.h>
15#include <linux/module.h>
16#include <linux/types.h>
17#include <linux/list.h>
18#include <linux/superhyway.h>
1/*
2 * drivers/sh/superhyway/superhyway.c
3 *
4 * SuperHyway Bus Driver
5 *
6 * Copyright (C) 2004, 2005 Paul Mundt <lethal@linux-sh.org>
7 *
8 * This file is subject to the terms and conditions of the GNU General Public
9 * License. See the file "COPYING" in the main directory of this archive
10 * for more details.
11 */
12#include <linux/kernel.h>
13#include <linux/device.h>
14#include <linux/init.h>
15#include <linux/module.h>
16#include <linux/types.h>
17#include <linux/list.h>
18#include <linux/superhyway.h>
19#include <linux/string.h>
20#include <linux/slab.h>
19
20static int superhyway_devices;
21
22static struct device superhyway_bus_device = {
23 .bus_id = "superhyway",
24};
25
26static void superhyway_device_release(struct device *dev)

--- 175 unchanged lines hidden ---
21
22static int superhyway_devices;
23
24static struct device superhyway_bus_device = {
25 .bus_id = "superhyway",
26};
27
28static void superhyway_device_release(struct device *dev)

--- 175 unchanged lines hidden ---