auxio_32.c (f9cd49033b349b8be3bb1f01b39eed837853d880) | auxio_32.c (a3ee8faa1b1bd02aaffe6dd0fd13d665234530f3) |
---|---|
1/* auxio.c: Probing for the Sparc AUXIO register at boot time. 2 * 3 * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu) 4 */ 5 6#include <linux/stddef.h> 7#include <linux/init.h> 8#include <linux/spinlock.h> 9#include <linux/of.h> 10#include <linux/of_device.h> 11#include <linux/export.h> | 1/* auxio.c: Probing for the Sparc AUXIO register at boot time. 2 * 3 * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu) 4 */ 5 6#include <linux/stddef.h> 7#include <linux/init.h> 8#include <linux/spinlock.h> 9#include <linux/of.h> 10#include <linux/of_device.h> 11#include <linux/export.h> |
12 |
|
12#include <asm/oplib.h> 13#include <asm/io.h> 14#include <asm/auxio.h> 15#include <asm/string.h> /* memset(), Linux has no bzero() */ 16#include <asm/cpu_type.h> 17 | 13#include <asm/oplib.h> 14#include <asm/io.h> 15#include <asm/auxio.h> 16#include <asm/string.h> /* memset(), Linux has no bzero() */ 17#include <asm/cpu_type.h> 18 |
19#include "kernel.h" 20 |
|
18/* Probe and map in the Auxiliary I/O register */ 19 20/* auxio_register is not static because it is referenced 21 * in entry.S::floppy_tdone 22 */ 23void __iomem *auxio_register = NULL; 24static DEFINE_SPINLOCK(auxio_lock); 25 --- 111 unchanged lines hidden --- | 21/* Probe and map in the Auxiliary I/O register */ 22 23/* auxio_register is not static because it is referenced 24 * in entry.S::floppy_tdone 25 */ 26void __iomem *auxio_register = NULL; 27static DEFINE_SPINLOCK(auxio_lock); 28 --- 111 unchanged lines hidden --- |