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
35177265
Commit
35177265
authored
Feb 24, 2007
by
Jeff Garzik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[libata] sata_mv: remove extra braces
Signed-off-by:
Jeff Garzik
<
jeff@garzik.org
>
parent
b9099ff6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
12 deletions
+7
-12
drivers/ata/sata_mv.c
drivers/ata/sata_mv.c
+7
-12
No files found.
drivers/ata/sata_mv.c
View file @
35177265
...
...
@@ -798,20 +798,18 @@ static u32 mv_scr_read(struct ata_port *ap, unsigned int sc_reg_in)
{
unsigned
int
ofs
=
mv_scr_offset
(
sc_reg_in
);
if
(
0xffffffffU
!=
ofs
)
{
if
(
0xffffffffU
!=
ofs
)
return
readl
(
mv_ap_base
(
ap
)
+
ofs
);
}
else
{
else
return
(
u32
)
ofs
;
}
}
static
void
mv_scr_write
(
struct
ata_port
*
ap
,
unsigned
int
sc_reg_in
,
u32
val
)
{
unsigned
int
ofs
=
mv_scr_offset
(
sc_reg_in
);
if
(
0xffffffffU
!=
ofs
)
{
if
(
0xffffffffU
!=
ofs
)
writelfl
(
val
,
mv_ap_base
(
ap
)
+
ofs
);
}
}
static
void
mv_edma_cfg
(
struct
mv_host_priv
*
hpriv
,
void
__iomem
*
port_mmio
)
...
...
@@ -1320,17 +1318,15 @@ static void mv_host_intr(struct ata_host *host, u32 relevant, unsigned int hc)
int
shift
,
port
,
port0
,
hard_port
,
handled
;
unsigned
int
err_mask
;
if
(
hc
==
0
)
{
if
(
hc
==
0
)
port0
=
0
;
}
else
{
else
port0
=
MV_PORTS_PER_HC
;
}
/* we'll need the HC success int register in most cases */
hc_irq_cause
=
readl
(
hc_mmio
+
HC_IRQ_CAUSE_OFS
);
if
(
hc_irq_cause
)
{
if
(
hc_irq_cause
)
writelfl
(
~
hc_irq_cause
,
hc_mmio
+
HC_IRQ_CAUSE_OFS
);
}
VPRINTK
(
"ENTER, hc%u relevant=0x%08x HC IRQ cause=0x%08x
\n
"
,
hc
,
relevant
,
hc_irq_cause
);
...
...
@@ -1425,9 +1421,8 @@ static irqreturn_t mv_interrupt(int irq, void *dev_instance)
/* check the cases where we either have nothing pending or have read
* a bogus register value which can indicate HW removal or PCI fault
*/
if
(
!
irq_stat
||
(
0xffffffffU
==
irq_stat
))
{
if
(
!
irq_stat
||
(
0xffffffffU
==
irq_stat
))
return
IRQ_NONE
;
}
n_hcs
=
mv_get_hc_count
(
host
->
ports
[
0
]
->
flags
);
spin_lock
(
&
host
->
lock
);
...
...
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