diff options
| author | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-05-08 07:59:16 -0400 |
|---|---|---|
| committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-05-08 13:48:48 -0400 |
| commit | 5a13e40b28486c3a755a0388767615f197f4ae07 (patch) | |
| tree | d3ff40669c1d800bdecbdd91b6317392f3cf8186 | |
| parent | 1555f3bf5cc172e7d23c2b8db10d656d15bec13e (diff) | |
media: replace bellow -> below
Bellow is yelling. Ok, sometimes the code is yells a lot, but
but this is not the case there ;)
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
| -rw-r--r-- | drivers/media/common/siano/smsir.c | 2 | ||||
| -rw-r--r-- | drivers/media/dvb-frontends/drx39xyj/drxj.c | 2 | ||||
| -rw-r--r-- | drivers/media/dvb-frontends/drxk_hard.c | 2 | ||||
| -rw-r--r-- | drivers/media/dvb-frontends/tda10021.c | 2 | ||||
| -rw-r--r-- | drivers/media/dvb-frontends/tda10023.c | 2 | ||||
| -rw-r--r-- | drivers/media/i2c/tvaudio.c | 2 | ||||
| -rw-r--r-- | drivers/media/tuners/tuner-xc2028.c | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/drivers/media/common/siano/smsir.c b/drivers/media/common/siano/smsir.c index 1d60d200d9ab..41f2a3939979 100644 --- a/drivers/media/common/siano/smsir.c +++ b/drivers/media/common/siano/smsir.c | |||
| @@ -78,7 +78,7 @@ int sms_ir_init(struct smscore_device_t *coredev) | |||
| 78 | dev->dev.parent = coredev->device; | 78 | dev->dev.parent = coredev->device; |
| 79 | 79 | ||
| 80 | #if 0 | 80 | #if 0 |
| 81 | /* TODO: properly initialize the parameters bellow */ | 81 | /* TODO: properly initialize the parameters below */ |
| 82 | dev->input_id.bustype = BUS_USB; | 82 | dev->input_id.bustype = BUS_USB; |
| 83 | dev->input_id.version = 1; | 83 | dev->input_id.version = 1; |
| 84 | dev->input_id.vendor = le16_to_cpu(dev->udev->descriptor.idVendor); | 84 | dev->input_id.vendor = le16_to_cpu(dev->udev->descriptor.idVendor); |
diff --git a/drivers/media/dvb-frontends/drx39xyj/drxj.c b/drivers/media/dvb-frontends/drx39xyj/drxj.c index 61f76038442a..52245354bf04 100644 --- a/drivers/media/dvb-frontends/drx39xyj/drxj.c +++ b/drivers/media/dvb-frontends/drx39xyj/drxj.c | |||
| @@ -9541,7 +9541,7 @@ ctrl_get_qam_sig_quality(struct drx_demod_instance *demod) | |||
| 9541 | /* ----------------------------------------- */ | 9541 | /* ----------------------------------------- */ |
| 9542 | /* Pre Viterbi Symbol Error Rate Calculation */ | 9542 | /* Pre Viterbi Symbol Error Rate Calculation */ |
| 9543 | /* ----------------------------------------- */ | 9543 | /* ----------------------------------------- */ |
| 9544 | /* pre viterbi SER is good if it is bellow 0.025 */ | 9544 | /* pre viterbi SER is good if it is below 0.025 */ |
| 9545 | 9545 | ||
| 9546 | /* get the register value */ | 9546 | /* get the register value */ |
| 9547 | /* no of quadrature symbol errors */ | 9547 | /* no of quadrature symbol errors */ |
diff --git a/drivers/media/dvb-frontends/drxk_hard.c b/drivers/media/dvb-frontends/drxk_hard.c index d46cf5f7cd2e..ad35264a3819 100644 --- a/drivers/media/dvb-frontends/drxk_hard.c +++ b/drivers/media/dvb-frontends/drxk_hard.c | |||
| @@ -544,7 +544,7 @@ error: | |||
| 544 | static int init_state(struct drxk_state *state) | 544 | static int init_state(struct drxk_state *state) |
| 545 | { | 545 | { |
| 546 | /* | 546 | /* |
| 547 | * FIXME: most (all?) of the values bellow should be moved into | 547 | * FIXME: most (all?) of the values below should be moved into |
| 548 | * struct drxk_config, as they are probably board-specific | 548 | * struct drxk_config, as they are probably board-specific |
| 549 | */ | 549 | */ |
| 550 | u32 ul_vsb_if_agc_mode = DRXK_AGC_CTRL_AUTO; | 550 | u32 ul_vsb_if_agc_mode = DRXK_AGC_CTRL_AUTO; |
diff --git a/drivers/media/dvb-frontends/tda10021.c b/drivers/media/dvb-frontends/tda10021.c index 1bff7f457e19..28d987068048 100644 --- a/drivers/media/dvb-frontends/tda10021.c +++ b/drivers/media/dvb-frontends/tda10021.c | |||
| @@ -258,7 +258,7 @@ static int tda10021_set_parameters(struct dvb_frontend *fe) | |||
| 258 | } | 258 | } |
| 259 | 259 | ||
| 260 | /* | 260 | /* |
| 261 | * gcc optimizes the code bellow the same way as it would code: | 261 | * gcc optimizes the code below the same way as it would code: |
| 262 | * "if (qam > 5) return -EINVAL;" | 262 | * "if (qam > 5) return -EINVAL;" |
| 263 | * Yet, the code is clearer, as it shows what QAM standards are | 263 | * Yet, the code is clearer, as it shows what QAM standards are |
| 264 | * supported by the driver, and avoids the usage of magic numbers on | 264 | * supported by the driver, and avoids the usage of magic numbers on |
diff --git a/drivers/media/dvb-frontends/tda10023.c b/drivers/media/dvb-frontends/tda10023.c index ca1e0d54b69a..f92fbbbb4a71 100644 --- a/drivers/media/dvb-frontends/tda10023.c +++ b/drivers/media/dvb-frontends/tda10023.c | |||
| @@ -331,7 +331,7 @@ static int tda10023_set_parameters(struct dvb_frontend *fe) | |||
| 331 | } | 331 | } |
| 332 | 332 | ||
| 333 | /* | 333 | /* |
| 334 | * gcc optimizes the code bellow the same way as it would code: | 334 | * gcc optimizes the code below the same way as it would code: |
| 335 | * "if (qam > 5) return -EINVAL;" | 335 | * "if (qam > 5) return -EINVAL;" |
| 336 | * Yet, the code is clearer, as it shows what QAM standards are | 336 | * Yet, the code is clearer, as it shows what QAM standards are |
| 337 | * supported by the driver, and avoids the usage of magic numbers on | 337 | * supported by the driver, and avoids the usage of magic numbers on |
diff --git a/drivers/media/i2c/tvaudio.c b/drivers/media/i2c/tvaudio.c index 070c152da95a..0c50e5285cf6 100644 --- a/drivers/media/i2c/tvaudio.c +++ b/drivers/media/i2c/tvaudio.c | |||
| @@ -272,7 +272,7 @@ static int chip_cmd(struct CHIPSTATE *chip, char *name, audiocmd *cmd) | |||
| 272 | return -EINVAL; | 272 | return -EINVAL; |
| 273 | } | 273 | } |
| 274 | 274 | ||
| 275 | /* FIXME: it seems that the shadow bytes are wrong bellow !*/ | 275 | /* FIXME: it seems that the shadow bytes are wrong below !*/ |
| 276 | 276 | ||
| 277 | /* update our shadow register set; print bytes if (debug > 0) */ | 277 | /* update our shadow register set; print bytes if (debug > 0) */ |
| 278 | v4l2_dbg(1, debug, sd, "chip_cmd(%s): reg=%d, data:", | 278 | v4l2_dbg(1, debug, sd, "chip_cmd(%s): reg=%d, data:", |
diff --git a/drivers/media/tuners/tuner-xc2028.c b/drivers/media/tuners/tuner-xc2028.c index d12f5e4ad8bf..4e941f00b600 100644 --- a/drivers/media/tuners/tuner-xc2028.c +++ b/drivers/media/tuners/tuner-xc2028.c | |||
| @@ -1094,7 +1094,7 @@ static int generic_set_freq(struct dvb_frontend *fe, u32 freq /* in HZ */, | |||
| 1094 | * Still need tests for XC3028L (firmware 3.2 or upper) | 1094 | * Still need tests for XC3028L (firmware 3.2 or upper) |
| 1095 | * So, for now, let's just comment the per-firmware | 1095 | * So, for now, let's just comment the per-firmware |
| 1096 | * version of this change. Reports with xc3028l working | 1096 | * version of this change. Reports with xc3028l working |
| 1097 | * with and without the lines bellow are welcome | 1097 | * with and without the lines below are welcome |
| 1098 | */ | 1098 | */ |
| 1099 | 1099 | ||
| 1100 | if (priv->firm_version < 0x0302) { | 1100 | if (priv->firm_version < 0x0302) { |
