Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide

Pull IDE cleanup from David Miller:
 "One IDE driver cleanup"

* git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide:
  Drivers: ide: Remove typedef atiixp_ide_timing
This commit is contained in:
Linus Torvalds 2014-10-18 09:29:59 -07:00
commit e0a9272c61
1 changed files with 4 additions and 4 deletions

View File

@ -19,12 +19,12 @@
#define ATIIXP_IDE_UDMA_CONTROL 0x54
#define ATIIXP_IDE_UDMA_MODE 0x56
typedef struct {
struct atiixp_ide_timing {
u8 command_width;
u8 recover_width;
} atiixp_ide_timing;
};
static atiixp_ide_timing pio_timing[] = {
static struct atiixp_ide_timing pio_timing[] = {
{ 0x05, 0x0d },
{ 0x04, 0x07 },
{ 0x03, 0x04 },
@ -32,7 +32,7 @@ static atiixp_ide_timing pio_timing[] = {
{ 0x02, 0x00 },
};
static atiixp_ide_timing mdma_timing[] = {
static struct atiixp_ide_timing mdma_timing[] = {
{ 0x07, 0x07 },
{ 0x02, 0x01 },
{ 0x02, 0x00 },