Commit 5595ddf9 authored by Mikael Pettersson's avatar Mikael Pettersson Committed by Jeff Garzik

sata_promise: cleanups

Minor sata_promise cleanups:
- use C99 array initialisers in pdc_port_info[]
- add myself in the file head's Maintained by note,
  since users don't always read the MAINTAINERS file
- SG/PRD bug workaround warrants driver version bump
Signed-off-by: default avatarMikael Pettersson <mikpe@it.uu.se>
--
 drivers/ata/sata_promise.c |   17 +++++++++--------
 1 files changed, 9 insertions(+), 8 deletions(-)
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent b9ccd4a9
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
* sata_promise.c - Promise SATA * sata_promise.c - Promise SATA
* *
* Maintained by: Jeff Garzik <jgarzik@pobox.com> * Maintained by: Jeff Garzik <jgarzik@pobox.com>
* Mikael Pettersson <mikpe@it.uu.se>
* Please ALWAYS copy linux-ide@vger.kernel.org * Please ALWAYS copy linux-ide@vger.kernel.org
* on emails. * on emails.
* *
...@@ -45,7 +46,7 @@ ...@@ -45,7 +46,7 @@
#include "sata_promise.h" #include "sata_promise.h"
#define DRV_NAME "sata_promise" #define DRV_NAME "sata_promise"
#define DRV_VERSION "2.10" #define DRV_VERSION "2.11"
enum { enum {
PDC_MAX_PORTS = 4, PDC_MAX_PORTS = 4,
...@@ -241,7 +242,7 @@ static const struct ata_port_operations pdc_pata_ops = { ...@@ -241,7 +242,7 @@ static const struct ata_port_operations pdc_pata_ops = {
}; };
static const struct ata_port_info pdc_port_info[] = { static const struct ata_port_info pdc_port_info[] = {
/* board_2037x */ [board_2037x] =
{ {
.flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA | .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA |
PDC_FLAG_SATA_PATA, PDC_FLAG_SATA_PATA,
...@@ -251,7 +252,7 @@ static const struct ata_port_info pdc_port_info[] = { ...@@ -251,7 +252,7 @@ static const struct ata_port_info pdc_port_info[] = {
.port_ops = &pdc_old_sata_ops, .port_ops = &pdc_old_sata_ops,
}, },
/* board_2037x_pata */ [board_2037x_pata] =
{ {
.flags = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS, .flags = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS,
.pio_mask = 0x1f, /* pio0-4 */ .pio_mask = 0x1f, /* pio0-4 */
...@@ -260,7 +261,7 @@ static const struct ata_port_info pdc_port_info[] = { ...@@ -260,7 +261,7 @@ static const struct ata_port_info pdc_port_info[] = {
.port_ops = &pdc_pata_ops, .port_ops = &pdc_pata_ops,
}, },
/* board_20319 */ [board_20319] =
{ {
.flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA | .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA |
PDC_FLAG_4_PORTS, PDC_FLAG_4_PORTS,
...@@ -270,7 +271,7 @@ static const struct ata_port_info pdc_port_info[] = { ...@@ -270,7 +271,7 @@ static const struct ata_port_info pdc_port_info[] = {
.port_ops = &pdc_old_sata_ops, .port_ops = &pdc_old_sata_ops,
}, },
/* board_20619 */ [board_20619] =
{ {
.flags = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS | .flags = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS |
PDC_FLAG_4_PORTS, PDC_FLAG_4_PORTS,
...@@ -280,7 +281,7 @@ static const struct ata_port_info pdc_port_info[] = { ...@@ -280,7 +281,7 @@ static const struct ata_port_info pdc_port_info[] = {
.port_ops = &pdc_pata_ops, .port_ops = &pdc_pata_ops,
}, },
/* board_2057x */ [board_2057x] =
{ {
.flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA | .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA |
PDC_FLAG_GEN_II | PDC_FLAG_SATA_PATA, PDC_FLAG_GEN_II | PDC_FLAG_SATA_PATA,
...@@ -290,7 +291,7 @@ static const struct ata_port_info pdc_port_info[] = { ...@@ -290,7 +291,7 @@ static const struct ata_port_info pdc_port_info[] = {
.port_ops = &pdc_sata_ops, .port_ops = &pdc_sata_ops,
}, },
/* board_2057x_pata */ [board_2057x_pata] =
{ {
.flags = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS | .flags = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS |
PDC_FLAG_GEN_II, PDC_FLAG_GEN_II,
...@@ -300,7 +301,7 @@ static const struct ata_port_info pdc_port_info[] = { ...@@ -300,7 +301,7 @@ static const struct ata_port_info pdc_port_info[] = {
.port_ops = &pdc_pata_ops, .port_ops = &pdc_pata_ops,
}, },
/* board_40518 */ [board_40518] =
{ {
.flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA | .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA |
PDC_FLAG_GEN_II | PDC_FLAG_4_PORTS, PDC_FLAG_GEN_II | PDC_FLAG_4_PORTS,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment