Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
a17259a7
Commit
a17259a7
authored
Nov 30, 2006
by
Jeff Garzik
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'tj-upstream-fixes' of
git://htj.dyndns.org/libata-tj
into tmp
parents
0215ffb0
afdfe899
Changes
39
Hide whitespace changes
Inline
Side-by-side
Showing
39 changed files
with
60 additions
and
5 deletions
+60
-5
drivers/ata/ahci.c
drivers/ata/ahci.c
+22
-5
drivers/ata/ata_generic.c
drivers/ata/ata_generic.c
+1
-0
drivers/ata/pata_ali.c
drivers/ata/pata_ali.c
+1
-0
drivers/ata/pata_amd.c
drivers/ata/pata_amd.c
+1
-0
drivers/ata/pata_artop.c
drivers/ata/pata_artop.c
+1
-0
drivers/ata/pata_atiixp.c
drivers/ata/pata_atiixp.c
+1
-0
drivers/ata/pata_cmd64x.c
drivers/ata/pata_cmd64x.c
+1
-0
drivers/ata/pata_cs5520.c
drivers/ata/pata_cs5520.c
+1
-0
drivers/ata/pata_cs5530.c
drivers/ata/pata_cs5530.c
+1
-0
drivers/ata/pata_cs5535.c
drivers/ata/pata_cs5535.c
+1
-0
drivers/ata/pata_cypress.c
drivers/ata/pata_cypress.c
+1
-0
drivers/ata/pata_efar.c
drivers/ata/pata_efar.c
+1
-0
drivers/ata/pata_hpt366.c
drivers/ata/pata_hpt366.c
+1
-0
drivers/ata/pata_hpt37x.c
drivers/ata/pata_hpt37x.c
+1
-0
drivers/ata/pata_hpt3x2n.c
drivers/ata/pata_hpt3x2n.c
+1
-0
drivers/ata/pata_hpt3x3.c
drivers/ata/pata_hpt3x3.c
+1
-0
drivers/ata/pata_isapnp.c
drivers/ata/pata_isapnp.c
+1
-0
drivers/ata/pata_it821x.c
drivers/ata/pata_it821x.c
+1
-0
drivers/ata/pata_jmicron.c
drivers/ata/pata_jmicron.c
+1
-0
drivers/ata/pata_legacy.c
drivers/ata/pata_legacy.c
+1
-0
drivers/ata/pata_mpiix.c
drivers/ata/pata_mpiix.c
+1
-0
drivers/ata/pata_netcell.c
drivers/ata/pata_netcell.c
+1
-0
drivers/ata/pata_ns87410.c
drivers/ata/pata_ns87410.c
+1
-0
drivers/ata/pata_oldpiix.c
drivers/ata/pata_oldpiix.c
+1
-0
drivers/ata/pata_opti.c
drivers/ata/pata_opti.c
+1
-0
drivers/ata/pata_optidma.c
drivers/ata/pata_optidma.c
+1
-0
drivers/ata/pata_pcmcia.c
drivers/ata/pata_pcmcia.c
+1
-0
drivers/ata/pata_pdc2027x.c
drivers/ata/pata_pdc2027x.c
+1
-0
drivers/ata/pata_pdc202xx_old.c
drivers/ata/pata_pdc202xx_old.c
+1
-0
drivers/ata/pata_qdi.c
drivers/ata/pata_qdi.c
+1
-0
drivers/ata/pata_radisys.c
drivers/ata/pata_radisys.c
+1
-0
drivers/ata/pata_rz1000.c
drivers/ata/pata_rz1000.c
+1
-0
drivers/ata/pata_sc1200.c
drivers/ata/pata_sc1200.c
+1
-0
drivers/ata/pata_serverworks.c
drivers/ata/pata_serverworks.c
+1
-0
drivers/ata/pata_sil680.c
drivers/ata/pata_sil680.c
+1
-0
drivers/ata/pata_sis.c
drivers/ata/pata_sis.c
+1
-0
drivers/ata/pata_sl82c105.c
drivers/ata/pata_sl82c105.c
+1
-0
drivers/ata/pata_triflex.c
drivers/ata/pata_triflex.c
+1
-0
drivers/ata/pata_via.c
drivers/ata/pata_via.c
+1
-0
No files found.
drivers/ata/ahci.c
View file @
a17259a7
...
@@ -78,6 +78,7 @@ enum {
...
@@ -78,6 +78,7 @@ enum {
board_ahci
=
0
,
board_ahci
=
0
,
board_ahci_vt8251
=
1
,
board_ahci_vt8251
=
1
,
board_ahci_ign_iferr
=
2
,
/* global controller registers */
/* global controller registers */
HOST_CAP
=
0x00
,
/* host capabilities */
HOST_CAP
=
0x00
,
/* host capabilities */
...
@@ -168,6 +169,7 @@ enum {
...
@@ -168,6 +169,7 @@ enum {
/* ap->flags bits */
/* ap->flags bits */
AHCI_FLAG_RESET_NEEDS_CLO
=
(
1
<<
24
),
AHCI_FLAG_RESET_NEEDS_CLO
=
(
1
<<
24
),
AHCI_FLAG_NO_NCQ
=
(
1
<<
25
),
AHCI_FLAG_NO_NCQ
=
(
1
<<
25
),
AHCI_FLAG_IGN_IRQ_IF_ERR
=
(
1
<<
26
),
/* ignore IRQ_IF_ERR */
};
};
struct
ahci_cmd_hdr
{
struct
ahci_cmd_hdr
{
...
@@ -295,6 +297,17 @@ static const struct ata_port_info ahci_port_info[] = {
...
@@ -295,6 +297,17 @@ static const struct ata_port_info ahci_port_info[] = {
.
udma_mask
=
0x7f
,
/* udma0-6 ; FIXME */
.
udma_mask
=
0x7f
,
/* udma0-6 ; FIXME */
.
port_ops
=
&
ahci_ops
,
.
port_ops
=
&
ahci_ops
,
},
},
/* board_ahci_ign_iferr */
{
.
sht
=
&
ahci_sht
,
.
flags
=
ATA_FLAG_SATA
|
ATA_FLAG_NO_LEGACY
|
ATA_FLAG_MMIO
|
ATA_FLAG_PIO_DMA
|
ATA_FLAG_SKIP_D2H_BSY
|
AHCI_FLAG_IGN_IRQ_IF_ERR
,
.
pio_mask
=
0x1f
,
/* pio0-4 */
.
udma_mask
=
0x7f
,
/* udma0-6 ; FIXME */
.
port_ops
=
&
ahci_ops
,
},
};
};
static
const
struct
pci_device_id
ahci_pci_tbl
[]
=
{
static
const
struct
pci_device_id
ahci_pci_tbl
[]
=
{
...
@@ -327,11 +340,11 @@ static const struct pci_device_id ahci_pci_tbl[] = {
...
@@ -327,11 +340,11 @@ static const struct pci_device_id ahci_pci_tbl[] = {
{
PCI_VDEVICE
(
INTEL
,
0x294e
),
board_ahci
},
/* ICH9M */
{
PCI_VDEVICE
(
INTEL
,
0x294e
),
board_ahci
},
/* ICH9M */
/* JMicron */
/* JMicron */
{
PCI_VDEVICE
(
JMICRON
,
0x2360
),
board_ahci
},
/* JMicron
JMB360 */
{
PCI_VDEVICE
(
JMICRON
,
0x2360
),
board_ahci
_ign_iferr
},
/*
JMB360 */
{
PCI_VDEVICE
(
JMICRON
,
0x2361
),
board_ahci
},
/* JMicron
JMB361 */
{
PCI_VDEVICE
(
JMICRON
,
0x2361
),
board_ahci
_ign_iferr
},
/*
JMB361 */
{
PCI_VDEVICE
(
JMICRON
,
0x2363
),
board_ahci
},
/* JMicron
JMB363 */
{
PCI_VDEVICE
(
JMICRON
,
0x2363
),
board_ahci
_ign_iferr
},
/*
JMB363 */
{
PCI_VDEVICE
(
JMICRON
,
0x2365
),
board_ahci
},
/* JMicron
JMB365 */
{
PCI_VDEVICE
(
JMICRON
,
0x2365
),
board_ahci
_ign_iferr
},
/*
JMB365 */
{
PCI_VDEVICE
(
JMICRON
,
0x2366
),
board_ahci
},
/* JMicron
JMB366 */
{
PCI_VDEVICE
(
JMICRON
,
0x2366
),
board_ahci
_ign_iferr
},
/*
JMB366 */
/* ATI */
/* ATI */
{
PCI_VDEVICE
(
ATI
,
0x4380
),
board_ahci
},
/* ATI SB600 non-raid */
{
PCI_VDEVICE
(
ATI
,
0x4380
),
board_ahci
},
/* ATI SB600 non-raid */
...
@@ -980,6 +993,10 @@ static void ahci_error_intr(struct ata_port *ap, u32 irq_stat)
...
@@ -980,6 +993,10 @@ static void ahci_error_intr(struct ata_port *ap, u32 irq_stat)
/* analyze @irq_stat */
/* analyze @irq_stat */
ata_ehi_push_desc
(
ehi
,
"irq_stat 0x%08x"
,
irq_stat
);
ata_ehi_push_desc
(
ehi
,
"irq_stat 0x%08x"
,
irq_stat
);
/* some controllers set IRQ_IF_ERR on device errors, ignore it */
if
(
ap
->
flags
&
AHCI_FLAG_IGN_IRQ_IF_ERR
)
irq_stat
&=
~
PORT_IRQ_IF_ERR
;
if
(
irq_stat
&
PORT_IRQ_TF_ERR
)
if
(
irq_stat
&
PORT_IRQ_TF_ERR
)
err_mask
|=
AC_ERR_DEV
;
err_mask
|=
AC_ERR_DEV
;
...
...
drivers/ata/ata_generic.c
View file @
a17259a7
...
@@ -116,6 +116,7 @@ static struct scsi_host_template generic_sht = {
...
@@ -116,6 +116,7 @@ static struct scsi_host_template generic_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_ali.c
View file @
a17259a7
...
@@ -346,6 +346,7 @@ static struct scsi_host_template ali_sht = {
...
@@ -346,6 +346,7 @@ static struct scsi_host_template ali_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_amd.c
View file @
a17259a7
...
@@ -333,6 +333,7 @@ static struct scsi_host_template amd_sht = {
...
@@ -333,6 +333,7 @@ static struct scsi_host_template amd_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_artop.c
View file @
a17259a7
...
@@ -314,6 +314,7 @@ static struct scsi_host_template artop_sht = {
...
@@ -314,6 +314,7 @@ static struct scsi_host_template artop_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_atiixp.c
View file @
a17259a7
...
@@ -216,6 +216,7 @@ static struct scsi_host_template atiixp_sht = {
...
@@ -216,6 +216,7 @@ static struct scsi_host_template atiixp_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_cmd64x.c
View file @
a17259a7
...
@@ -275,6 +275,7 @@ static struct scsi_host_template cmd64x_sht = {
...
@@ -275,6 +275,7 @@ static struct scsi_host_template cmd64x_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_cs5520.c
View file @
a17259a7
...
@@ -166,6 +166,7 @@ static struct scsi_host_template cs5520_sht = {
...
@@ -166,6 +166,7 @@ static struct scsi_host_template cs5520_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_cs5530.c
View file @
a17259a7
...
@@ -180,6 +180,7 @@ static struct scsi_host_template cs5530_sht = {
...
@@ -180,6 +180,7 @@ static struct scsi_host_template cs5530_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_cs5535.c
View file @
a17259a7
...
@@ -184,6 +184,7 @@ static struct scsi_host_template cs5535_sht = {
...
@@ -184,6 +184,7 @@ static struct scsi_host_template cs5535_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_cypress.c
View file @
a17259a7
...
@@ -135,6 +135,7 @@ static struct scsi_host_template cy82c693_sht = {
...
@@ -135,6 +135,7 @@ static struct scsi_host_template cy82c693_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_efar.c
View file @
a17259a7
...
@@ -233,6 +233,7 @@ static struct scsi_host_template efar_sht = {
...
@@ -233,6 +233,7 @@ static struct scsi_host_template efar_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_hpt366.c
View file @
a17259a7
...
@@ -329,6 +329,7 @@ static struct scsi_host_template hpt36x_sht = {
...
@@ -329,6 +329,7 @@ static struct scsi_host_template hpt36x_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_hpt37x.c
View file @
a17259a7
...
@@ -775,6 +775,7 @@ static struct scsi_host_template hpt37x_sht = {
...
@@ -775,6 +775,7 @@ static struct scsi_host_template hpt37x_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_hpt3x2n.c
View file @
a17259a7
...
@@ -341,6 +341,7 @@ static struct scsi_host_template hpt3x2n_sht = {
...
@@ -341,6 +341,7 @@ static struct scsi_host_template hpt3x2n_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_hpt3x3.c
View file @
a17259a7
...
@@ -118,6 +118,7 @@ static struct scsi_host_template hpt3x3_sht = {
...
@@ -118,6 +118,7 @@ static struct scsi_host_template hpt3x3_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_isapnp.c
View file @
a17259a7
...
@@ -34,6 +34,7 @@ static struct scsi_host_template isapnp_sht = {
...
@@ -34,6 +34,7 @@ static struct scsi_host_template isapnp_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_it821x.c
View file @
a17259a7
...
@@ -675,6 +675,7 @@ static struct scsi_host_template it821x_sht = {
...
@@ -675,6 +675,7 @@ static struct scsi_host_template it821x_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_jmicron.c
View file @
a17259a7
...
@@ -136,6 +136,7 @@ static struct scsi_host_template jmicron_sht = {
...
@@ -136,6 +136,7 @@ static struct scsi_host_template jmicron_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
/* Use standard CHS mapping rules */
/* Use standard CHS mapping rules */
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_legacy.c
View file @
a17259a7
...
@@ -135,6 +135,7 @@ static struct scsi_host_template legacy_sht = {
...
@@ -135,6 +135,7 @@ static struct scsi_host_template legacy_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_mpiix.c
View file @
a17259a7
...
@@ -166,6 +166,7 @@ static struct scsi_host_template mpiix_sht = {
...
@@ -166,6 +166,7 @@ static struct scsi_host_template mpiix_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_netcell.c
View file @
a17259a7
...
@@ -62,6 +62,7 @@ static struct scsi_host_template netcell_sht = {
...
@@ -62,6 +62,7 @@ static struct scsi_host_template netcell_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
/* Use standard CHS mapping rules */
/* Use standard CHS mapping rules */
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_ns87410.c
View file @
a17259a7
...
@@ -156,6 +156,7 @@ static struct scsi_host_template ns87410_sht = {
...
@@ -156,6 +156,7 @@ static struct scsi_host_template ns87410_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_oldpiix.c
View file @
a17259a7
...
@@ -231,6 +231,7 @@ static struct scsi_host_template oldpiix_sht = {
...
@@ -231,6 +231,7 @@ static struct scsi_host_template oldpiix_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_opti.c
View file @
a17259a7
...
@@ -202,6 +202,7 @@ static struct scsi_host_template opti_sht = {
...
@@ -202,6 +202,7 @@ static struct scsi_host_template opti_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_optidma.c
View file @
a17259a7
...
@@ -359,6 +359,7 @@ static struct scsi_host_template optidma_sht = {
...
@@ -359,6 +359,7 @@ static struct scsi_host_template optidma_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_pcmcia.c
View file @
a17259a7
...
@@ -69,6 +69,7 @@ static struct scsi_host_template pcmcia_sht = {
...
@@ -69,6 +69,7 @@ static struct scsi_host_template pcmcia_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_pdc2027x.c
View file @
a17259a7
...
@@ -141,6 +141,7 @@ static struct scsi_host_template pdc2027x_sht = {
...
@@ -141,6 +141,7 @@ static struct scsi_host_template pdc2027x_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_pdc202xx_old.c
View file @
a17259a7
...
@@ -269,6 +269,7 @@ static struct scsi_host_template pdc_sht = {
...
@@ -269,6 +269,7 @@ static struct scsi_host_template pdc_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_qdi.c
View file @
a17259a7
...
@@ -164,6 +164,7 @@ static struct scsi_host_template qdi_sht = {
...
@@ -164,6 +164,7 @@ static struct scsi_host_template qdi_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_radisys.c
View file @
a17259a7
...
@@ -227,6 +227,7 @@ static struct scsi_host_template radisys_sht = {
...
@@ -227,6 +227,7 @@ static struct scsi_host_template radisys_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_rz1000.c
View file @
a17259a7
...
@@ -90,6 +90,7 @@ static struct scsi_host_template rz1000_sht = {
...
@@ -90,6 +90,7 @@ static struct scsi_host_template rz1000_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_sc1200.c
View file @
a17259a7
...
@@ -193,6 +193,7 @@ static struct scsi_host_template sc1200_sht = {
...
@@ -193,6 +193,7 @@ static struct scsi_host_template sc1200_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_serverworks.c
View file @
a17259a7
...
@@ -325,6 +325,7 @@ static struct scsi_host_template serverworks_sht = {
...
@@ -325,6 +325,7 @@ static struct scsi_host_template serverworks_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_sil680.c
View file @
a17259a7
...
@@ -225,6 +225,7 @@ static struct scsi_host_template sil680_sht = {
...
@@ -225,6 +225,7 @@ static struct scsi_host_template sil680_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_sis.c
View file @
a17259a7
...
@@ -545,6 +545,7 @@ static struct scsi_host_template sis_sht = {
...
@@ -545,6 +545,7 @@ static struct scsi_host_template sis_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_sl82c105.c
View file @
a17259a7
...
@@ -237,6 +237,7 @@ static struct scsi_host_template sl82c105_sht = {
...
@@ -237,6 +237,7 @@ static struct scsi_host_template sl82c105_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_triflex.c
View file @
a17259a7
...
@@ -192,6 +192,7 @@ static struct scsi_host_template triflex_sht = {
...
@@ -192,6 +192,7 @@ static struct scsi_host_template triflex_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
drivers/ata/pata_via.c
View file @
a17259a7
...
@@ -295,6 +295,7 @@ static struct scsi_host_template via_sht = {
...
@@ -295,6 +295,7 @@ static struct scsi_host_template via_sht = {
.
proc_name
=
DRV_NAME
,
.
proc_name
=
DRV_NAME
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
dma_boundary
=
ATA_DMA_BOUNDARY
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_configure
=
ata_scsi_slave_config
,
.
slave_destroy
=
ata_scsi_slave_destroy
,
.
bios_param
=
ata_std_bios_param
,
.
bios_param
=
ata_std_bios_param
,
};
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment