pata_pxa.c (7483d45f0aee3afc0646d185cabd4af9f6cab58c) | pata_pxa.c (293b2da1b61136813fc2764f43304c66ff8040e9) |
---|---|
1/* 2 * Generic PXA PATA driver 3 * 4 * Copyright (C) 2010 Marek Vasut <marek.vasut@gmail.com> 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation; either version 2, or (at your option) --- 18 unchanged lines hidden (view full) --- 27#include <linux/platform_device.h> 28#include <linux/gpio.h> 29#include <linux/slab.h> 30#include <linux/completion.h> 31 32#include <scsi/scsi_host.h> 33 34#include <mach/pxa2xx-regs.h> | 1/* 2 * Generic PXA PATA driver 3 * 4 * Copyright (C) 2010 Marek Vasut <marek.vasut@gmail.com> 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation; either version 2, or (at your option) --- 18 unchanged lines hidden (view full) --- 27#include <linux/platform_device.h> 28#include <linux/gpio.h> 29#include <linux/slab.h> 30#include <linux/completion.h> 31 32#include <scsi/scsi_host.h> 33 34#include <mach/pxa2xx-regs.h> |
35#include <mach/pata_pxa.h> | 35#include <linux/platform_data/ata-pxa.h> |
36#include <mach/dma.h> 37 38#define DRV_NAME "pata_pxa" 39#define DRV_VERSION "0.1" 40 41struct pata_pxa_data { 42 uint32_t dma_channel; 43 struct pxa_dma_desc *dma_desc; --- 356 unchanged lines hidden --- | 36#include <mach/dma.h> 37 38#define DRV_NAME "pata_pxa" 39#define DRV_VERSION "0.1" 40 41struct pata_pxa_data { 42 uint32_t dma_channel; 43 struct pxa_dma_desc *dma_desc; --- 356 unchanged lines hidden --- |