Author: Peter Senna Tschudin <peter.senna@gmail.com> Remove unneeded semicolon. The semantic patch that detects this change is available at scripts/coccinelle/misc/semicolon.cocci. Signed-off-by: Peter Senna Tschudin Signed-off-by: Heiko Carstens Signed-off-by: Martin Schwidefsky — drivers/s390/block/dasd_alias.c | 6 +++— drivers/s390/char/monreader.c | 2 +- drivers/s390/scsi/zfcp_fsf.c | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff –git a/drivers/s390/block/dasd_alias.c b/drivers/s390/block/dasd_alias.c index …
Category: Linux
Aug 02 2015
ASoC: wm_hubs: Replace TLV_DB_RANGE_HEAD with DECLARE_TLV_DB_RANGE
Author: Lars-Peter Clausen <lars@metafoo.de> DECLARE_TLV_DB_RANGE() has the advantage over using TLV_DB_RANGE_HEAD() that it automatically calculates the number of items in the TLV and is hence less prone to manual error. Generate using the following coccinelle script // @@ declarer name DECLARE_TLV_DB_RANGE; identifier tlv; constant x; @@ -unsigned int tlv[] = { – TLV_DB_RANGE_HEAD(x), +DECLARE_TLV_DB_RANGE(tlv, … …
Aug 02 2015
ASoC: wm9713: Replace TLV_DB_RANGE_HEAD with DECLARE_TLV_DB_RANGE
Author: Lars-Peter Clausen <lars@metafoo.de> DECLARE_TLV_DB_RANGE() has the advantage over using TLV_DB_RANGE_HEAD() that it automatically calculates the number of items in the TLV and is hence less prone to manual error. Generate using the following coccinelle script // @@ declarer name DECLARE_TLV_DB_RANGE; identifier tlv; constant x; @@ -unsigned int tlv[] = { – TLV_DB_RANGE_HEAD(x), +DECLARE_TLV_DB_RANGE(tlv, … …
Aug 02 2015
ASoC: wm9090: Replace TLV_DB_RANGE_HEAD with DECLARE_TLV_DB_RANGE
Author: Lars-Peter Clausen <lars@metafoo.de> DECLARE_TLV_DB_RANGE() has the advantage over using TLV_DB_RANGE_HEAD() that it automatically calculates the number of items in the TLV and is hence less prone to manual error. Generate using the following coccinelle script // @@ declarer name DECLARE_TLV_DB_RANGE; identifier tlv; constant x; @@ -unsigned int tlv[] = { – TLV_DB_RANGE_HEAD(x), +DECLARE_TLV_DB_RANGE(tlv, … …
Aug 02 2015
ASoC: wm9081: Replace TLV_DB_RANGE_HEAD with DECLARE_TLV_DB_RANGE
Author: Lars-Peter Clausen <lars@metafoo.de> DECLARE_TLV_DB_RANGE() has the advantage over using TLV_DB_RANGE_HEAD() that it automatically calculates the number of items in the TLV and is hence less prone to manual error. Generate using the following coccinelle script // @@ declarer name DECLARE_TLV_DB_RANGE; identifier tlv; constant x; @@ -unsigned int tlv[] = { – TLV_DB_RANGE_HEAD(x), +DECLARE_TLV_DB_RANGE(tlv, … …
Aug 02 2015
ASoC: wm8993: Replace TLV_DB_RANGE_HEAD with DECLARE_TLV_DB_RANGE
Author: Lars-Peter Clausen <lars@metafoo.de> DECLARE_TLV_DB_RANGE() has the advantage over using TLV_DB_RANGE_HEAD() that it automatically calculates the number of items in the TLV and is hence less prone to manual error. Generate using the following coccinelle script // @@ declarer name DECLARE_TLV_DB_RANGE; identifier tlv; constant x; @@ -unsigned int tlv[] = { – TLV_DB_RANGE_HEAD(x), +DECLARE_TLV_DB_RANGE(tlv, … …
Aug 02 2015
ASoC: wm8962: Replace TLV_DB_RANGE_HEAD with DECLARE_TLV_DB_RANGE
Author: Lars-Peter Clausen <lars@metafoo.de> DECLARE_TLV_DB_RANGE() has the advantage over using TLV_DB_RANGE_HEAD() that it automatically calculates the number of items in the TLV and is hence less prone to manual error. Generate using the following coccinelle script // @@ declarer name DECLARE_TLV_DB_RANGE; identifier tlv; constant x; @@ -unsigned int tlv[] = { – TLV_DB_RANGE_HEAD(x), +DECLARE_TLV_DB_RANGE(tlv, … …
Aug 02 2015
ASoC: wm8961: Replace TLV_DB_RANGE_HEAD with DECLARE_TLV_DB_RANGE
Author: Lars-Peter Clausen <lars@metafoo.de> DECLARE_TLV_DB_RANGE() has the advantage over using TLV_DB_RANGE_HEAD() that it automatically calculates the number of items in the TLV and is hence less prone to manual error. Generate using the following coccinelle script // @@ declarer name DECLARE_TLV_DB_RANGE; identifier tlv; constant x; @@ -unsigned int tlv[] = { – TLV_DB_RANGE_HEAD(x), +DECLARE_TLV_DB_RANGE(tlv, … …
Aug 02 2015
ASoC: wm8753: Replace TLV_DB_RANGE_HEAD with DECLARE_TLV_DB_RANGE
Author: Lars-Peter Clausen <lars@metafoo.de> DECLARE_TLV_DB_RANGE() has the advantage over using TLV_DB_RANGE_HEAD() that it automatically calculates the number of items in the TLV and is hence less prone to manual error. Generate using the following coccinelle script // @@ declarer name DECLARE_TLV_DB_RANGE; identifier tlv; constant x; @@ -unsigned int tlv[] = { – TLV_DB_RANGE_HEAD(x), +DECLARE_TLV_DB_RANGE(tlv, … …
Aug 02 2015
ASoC: wm8737: Replace TLV_DB_RANGE_HEAD with DECLARE_TLV_DB_RANGE
Author: Lars-Peter Clausen <lars@metafoo.de> DECLARE_TLV_DB_RANGE() has the advantage over using TLV_DB_RANGE_HEAD() that it automatically calculates the number of items in the TLV and is hence less prone to manual error. Generate using the following coccinelle script // @@ declarer name DECLARE_TLV_DB_RANGE; identifier tlv; constant x; @@ -unsigned int tlv[] = { – TLV_DB_RANGE_HEAD(x), +DECLARE_TLV_DB_RANGE(tlv, … …