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
0fe4618d
Commit
0fe4618d
authored
Jan 09, 2017
by
Tejun Heo
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'for-4.10-fixes' into for-4.11
parents
88af4bbd
064c3db9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
drivers/ata/libata-core.c
drivers/ata/libata-core.c
+4
-2
drivers/ata/sata_mv.c
drivers/ata/sata_mv.c
+3
-0
No files found.
drivers/ata/libata-core.c
View file @
0fe4618d
...
...
@@ -1702,6 +1702,8 @@ unsigned ata_exec_internal_sg(struct ata_device *dev,
if
(
qc
->
err_mask
&
~
AC_ERR_OTHER
)
qc
->
err_mask
&=
~
AC_ERR_OTHER
;
}
else
if
(
qc
->
tf
.
command
==
ATA_CMD_REQ_SENSE_DATA
)
{
qc
->
result_tf
.
command
|=
ATA_SENSE
;
}
/* finish up */
...
...
@@ -4356,10 +4358,10 @@ static const struct ata_blacklist_entry ata_device_blacklist [] = {
{
"ST380013AS"
,
"3.20"
,
ATA_HORKAGE_MAX_SEC_1024
},
/*
*
Device times
out with higher max sects.
*
These devices time
out with higher max sects.
* https://bugzilla.kernel.org/show_bug.cgi?id=121671
*/
{
"LITEON CX1-JB
256-HP"
,
NULL
,
ATA_HORKAGE_MAX_SEC_1024
},
{
"LITEON CX1-JB
*-HP"
,
NULL
,
ATA_HORKAGE_MAX_SEC_1024
},
/* Devices we expect to fail diagnostics */
...
...
drivers/ata/sata_mv.c
View file @
0fe4618d
...
...
@@ -4132,6 +4132,9 @@ static int mv_platform_probe(struct platform_device *pdev)
host
->
iomap
=
NULL
;
hpriv
->
base
=
devm_ioremap
(
&
pdev
->
dev
,
res
->
start
,
resource_size
(
res
));
if
(
!
hpriv
->
base
)
return
-
ENOMEM
;
hpriv
->
base
-=
SATAHC0_REG_BASE
;
hpriv
->
clk
=
clk_get
(
&
pdev
->
dev
,
NULL
);
...
...
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