diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-12-12 02:01:14 +0000 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-12-12 02:01:14 +0000 |
commit | 652cff3226732d3592b00645a9adfdae7d78deb1 (patch) | |
tree | eb03618b894ac0854ce915e5ebd13553f2d7bbf0 /linux/drivers/media/dvb/frontends/drx397xD_fw.h | |
parent | efe8d48c56888677c8f5986e3a0a1a8e3f7dd6b3 (diff) | |
download | mediapointer-dvb-s2-652cff3226732d3592b00645a9adfdae7d78deb1.tar.gz mediapointer-dvb-s2-652cff3226732d3592b00645a9adfdae7d78deb1.tar.bz2 |
dvb: remove deprecated use of RW_LOCK_UNLOCKED in frontends
From: Steven Rostedt <rostedt@goodmis.org>
Impact: clean up
RW_LOCK_UNLOCKED is deprecated. This patch replaces it with the
__RW_LOCK_UNLOCKED(lock) macro. This change was a little trickier than
others due to the macro being used in another macro that fills an array.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'linux/drivers/media/dvb/frontends/drx397xD_fw.h')
-rw-r--r-- | linux/drivers/media/dvb/frontends/drx397xD_fw.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/dvb/frontends/drx397xD_fw.h b/linux/drivers/media/dvb/frontends/drx397xD_fw.h index 01de02a81..c8b44c1e8 100644 --- a/linux/drivers/media/dvb/frontends/drx397xD_fw.h +++ b/linux/drivers/media/dvb/frontends/drx397xD_fw.h @@ -18,8 +18,8 @@ */ #ifdef _FW_ENTRY - _FW_ENTRY("drx397xD.A2.fw", DRXD_FW_A2 = 0 ), - _FW_ENTRY("drx397xD.B1.fw", DRXD_FW_B1 ), + _FW_ENTRY("drx397xD.A2.fw", DRXD_FW_A2 = 0, DRXD_FW_A2 ), + _FW_ENTRY("drx397xD.B1.fw", DRXD_FW_B1, DRXD_FW_B1 ), #undef _FW_ENTRY #endif /* _FW_ENTRY */ |