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
nexedi
linux
Commits
9fe02668
Commit
9fe02668
authored
Dec 02, 2009
by
David S. Miller
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/ide-2.6
parents
602da297
10ca3028
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
14 deletions
+7
-14
drivers/ide/cmd64x.c
drivers/ide/cmd64x.c
+4
-2
drivers/ide/cs5535.c
drivers/ide/cs5535.c
+1
-0
drivers/ide/ide-ioctls.c
drivers/ide/ide-ioctls.c
+1
-1
drivers/ide/ide-probe.c
drivers/ide/ide-probe.c
+0
-9
drivers/ide/slc90e66.c
drivers/ide/slc90e66.c
+1
-2
No files found.
drivers/ide/cmd64x.c
View file @
9fe02668
...
...
@@ -379,7 +379,8 @@ static const struct ide_port_info cmd64x_chipsets[] __devinitdata = {
.
enablebits
=
{{
0x00
,
0x00
,
0x00
},
{
0x51
,
0x08
,
0x08
}},
.
port_ops
=
&
cmd64x_port_ops
,
.
host_flags
=
IDE_HFLAG_CLEAR_SIMPLEX
|
IDE_HFLAG_ABUSE_PREFETCH
,
IDE_HFLAG_ABUSE_PREFETCH
|
IDE_HFLAG_SERIALIZE
,
.
pio_mask
=
ATA_PIO5
,
.
mwdma_mask
=
ATA_MWDMA2
,
.
udma_mask
=
0x00
,
/* no udma */
...
...
@@ -389,7 +390,8 @@ static const struct ide_port_info cmd64x_chipsets[] __devinitdata = {
.
init_chipset
=
init_chipset_cmd64x
,
.
enablebits
=
{{
0x51
,
0x04
,
0x04
},
{
0x51
,
0x08
,
0x08
}},
.
port_ops
=
&
cmd648_port_ops
,
.
host_flags
=
IDE_HFLAG_ABUSE_PREFETCH
,
.
host_flags
=
IDE_HFLAG_ABUSE_PREFETCH
|
IDE_HFLAG_SERIALIZE
,
.
pio_mask
=
ATA_PIO5
,
.
mwdma_mask
=
ATA_MWDMA2
,
.
udma_mask
=
ATA_UDMA2
,
...
...
drivers/ide/cs5535.c
View file @
9fe02668
...
...
@@ -187,6 +187,7 @@ static int __devinit cs5535_init_one(struct pci_dev *dev,
static
const
struct
pci_device_id
cs5535_pci_tbl
[]
=
{
{
PCI_VDEVICE
(
NS
,
PCI_DEVICE_ID_NS_CS5535_IDE
),
0
},
{
PCI_VDEVICE
(
AMD
,
PCI_DEVICE_ID_AMD_CS5535_IDE
),
},
{
0
,
},
};
...
...
drivers/ide/ide-ioctls.c
View file @
9fe02668
...
...
@@ -162,7 +162,7 @@ static int ide_cmd_ioctl(ide_drive_t *drive, unsigned long arg)
if
(
tf
->
command
==
ATA_CMD_SET_FEATURES
&&
tf
->
feature
==
SETFEATURES_XFER
&&
tf
->
nsect
>=
XFER_SW_DMA_0
)
{
xfer_rate
=
ide_find_dma_mode
(
drive
,
XFER_UDMA_6
);
xfer_rate
=
ide_find_dma_mode
(
drive
,
tf
->
nsect
);
if
(
xfer_rate
!=
tf
->
nsect
)
{
err
=
-
EINVAL
;
goto
abort
;
...
...
drivers/ide/ide-probe.c
View file @
9fe02668
...
...
@@ -1046,15 +1046,6 @@ static void ide_port_init_devices(ide_hwif_t *hwif)
if
(
port_ops
&&
port_ops
->
init_dev
)
port_ops
->
init_dev
(
drive
);
}
ide_port_for_each_dev
(
i
,
drive
,
hwif
)
{
/*
* default to PIO Mode 0 before we figure out
* the most suited mode for the attached device
*/
if
(
port_ops
&&
port_ops
->
set_pio_mode
)
port_ops
->
set_pio_mode
(
drive
,
0
);
}
}
static
void
ide_init_port
(
ide_hwif_t
*
hwif
,
unsigned
int
port
,
...
...
drivers/ide/slc90e66.c
View file @
9fe02668
...
...
@@ -91,8 +91,7 @@ static void slc90e66_set_dma_mode(ide_drive_t *drive, const u8 speed)
if
(
!
(
reg48
&
u_flag
))
pci_write_config_word
(
dev
,
0x48
,
reg48
|
u_flag
);
/* FIXME: (reg4a & a_speed) ? */
if
((
reg4a
&
u_speed
)
!=
u_speed
)
{
if
((
reg4a
&
a_speed
)
!=
u_speed
)
{
pci_write_config_word
(
dev
,
0x4a
,
reg4a
&
~
a_speed
);
pci_read_config_word
(
dev
,
0x4a
,
&
reg4a
);
pci_write_config_word
(
dev
,
0x4a
,
reg4a
|
u_speed
);
...
...
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