Commit b4c2c314 authored by Katie Dunne's avatar Katie Dunne Committed by Greg Kroah-Hartman

Staging: media: mn88473: Match alignment with open parenthesis

Fixes the checkpatch.pl Check:
CHECK: Alignment should match open parenthesis

Increases readability by standardizing 7 argument indentations
Signed-off-by: default avatarKatie Dunne <kdunne@mail.ccsf.edu>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b856e0f7
...@@ -34,9 +34,13 @@ static int mn88473_set_frontend(struct dvb_frontend *fe) ...@@ -34,9 +34,13 @@ static int mn88473_set_frontend(struct dvb_frontend *fe)
dev_dbg(&client->dev, dev_dbg(&client->dev,
"delivery_system=%u modulation=%u frequency=%u bandwidth_hz=%u symbol_rate=%u inversion=%d stream_id=%d\n", "delivery_system=%u modulation=%u frequency=%u bandwidth_hz=%u symbol_rate=%u inversion=%d stream_id=%d\n",
c->delivery_system, c->modulation, c->delivery_system,
c->frequency, c->bandwidth_hz, c->symbol_rate, c->modulation,
c->inversion, c->stream_id); c->frequency,
c->bandwidth_hz,
c->symbol_rate,
c->inversion,
c->stream_id);
if (!dev->warm) { if (!dev->warm) {
ret = -EAGAIN; ret = -EAGAIN;
......
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