Skip to content

Commit

Permalink
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide
Browse files Browse the repository at this point in the history
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
  • Loading branch information
torvalds committed Oct 18, 2014
2 parents 76835b0 + 7546e52 commit e0a9272
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/ide/atiixp.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@
#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 },
{ 0x02, 0x02 },
{ 0x02, 0x00 },
};

static atiixp_ide_timing mdma_timing[] = {
static struct atiixp_ide_timing mdma_timing[] = {
{ 0x07, 0x07 },
{ 0x02, 0x01 },
{ 0x02, 0x00 },
Expand Down

0 comments on commit e0a9272

Please sign in to comment.