Commit 4521af78 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

media: ix2505v: get rid of /** comments

As warned:

  drivers/media/dvb-frontends/ix2505v.c:24: warning: cannot understand function prototype: 'int ix2505v_debug; '
  drivers/media/dvb-frontends/ix2505v.c:59: warning: No description found for parameter 'state'
  drivers/media/dvb-frontends/ix2505v.c:128: warning: No description found for parameter 'fe'

None of the comments there are kernel-doc. So, remove them with:

	perl -pi -e 's,\/\*\*,/*,g' drivers/media/dvb-frontends/ix2505v.c
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent ef69f8d2
/** /*
* Driver for Sharp IX2505V (marked B0017) DVB-S silicon tuner * Driver for Sharp IX2505V (marked B0017) DVB-S silicon tuner
* *
* Copyright (C) 2010 Malcolm Priestley * Copyright (C) 2010 Malcolm Priestley
...@@ -36,7 +36,7 @@ struct ix2505v_state { ...@@ -36,7 +36,7 @@ struct ix2505v_state {
u32 frequency; u32 frequency;
}; };
/** /*
* Data read format of the Sharp IX2505V B0017 * Data read format of the Sharp IX2505V B0017
* *
* byte1: 1 | 1 | 0 | 0 | 0 | MA1 | MA0 | 1 * byte1: 1 | 1 | 0 | 0 | 0 | MA1 | MA0 | 1
...@@ -99,7 +99,7 @@ static void ix2505v_release(struct dvb_frontend *fe) ...@@ -99,7 +99,7 @@ static void ix2505v_release(struct dvb_frontend *fe)
} }
/** /*
* Data write format of the Sharp IX2505V B0017 * Data write format of the Sharp IX2505V B0017
* *
* byte1: 1 | 1 | 0 | 0 | 0 | 0(MA1)| 0(MA0)| 0 * byte1: 1 | 1 | 0 | 0 | 0 | 0(MA1)| 0(MA0)| 0
......
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