scoop.c (0a2d31b62dba9b5b92a38c67c9cc42630513662a) | scoop.c (2f8163baada3dbd0ce891c35bc59ae46e773487a) |
---|---|
1/* 2 * Support code for the SCOOP interface found on various Sharp PDAs 3 * 4 * Copyright (c) 2004 Richard Purdie 5 * 6 * Based on code written by Sharp/Lineo for 2.4 kernels 7 * 8 * This program is free software; you can redistribute it and/or modify 9 * it under the terms of the GNU General Public License version 2 as 10 * published by the Free Software Foundation. 11 * 12 */ 13 14#include <linux/device.h> | 1/* 2 * Support code for the SCOOP interface found on various Sharp PDAs 3 * 4 * Copyright (c) 2004 Richard Purdie 5 * 6 * Based on code written by Sharp/Lineo for 2.4 kernels 7 * 8 * This program is free software; you can redistribute it and/or modify 9 * it under the terms of the GNU General Public License version 2 as 10 * published by the Free Software Foundation. 11 * 12 */ 13 14#include <linux/device.h> |
15#include <linux/gpio.h> |
|
15#include <linux/string.h> 16#include <linux/slab.h> 17#include <linux/platform_device.h> 18#include <linux/io.h> | 16#include <linux/string.h> 17#include <linux/slab.h> 18#include <linux/platform_device.h> 19#include <linux/io.h> |
19#include <asm/gpio.h> | |
20#include <asm/hardware/scoop.h> 21 22/* PCMCIA to Scoop linkage 23 24 There is no easy way to link multiple scoop devices into one 25 single entity for the pxa2xx_pcmcia device so this structure 26 is used which is setup by the platform code. 27 --- 256 unchanged lines hidden --- | 20#include <asm/hardware/scoop.h> 21 22/* PCMCIA to Scoop linkage 23 24 There is no easy way to link multiple scoop devices into one 25 single entity for the pxa2xx_pcmcia device so this structure 26 is used which is setup by the platform code. 27 --- 256 unchanged lines hidden --- |