Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1609839
| From | Andi Shyti <andi.shyti@samsung.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] [media] rc: ir-spi: remove unnecessary initialization |
| Date | 2017-03-27 15:40 +0200 |
| Message-ID | <tpD2h-kn-17@gated-at.bofh.it> (permalink) |
| References | <tpD2h-kn-19@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Signed-off-by: Andi Shyti <andi.shyti@samsung.com>
---
drivers/media/rc/ir-spi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/media/rc/ir-spi.c b/drivers/media/rc/ir-spi.c
index c8863f36686a..4ca43383a8e8 100644
--- a/drivers/media/rc/ir-spi.c
+++ b/drivers/media/rc/ir-spi.c
@@ -58,7 +58,7 @@ static int ir_spi_tx(struct rc_dev *dev,
/* convert the pulse/space signal to raw binary signal */
for (i = 0; i < count; i++) {
int j;
- u16 val = ((i + 1) % 2) ? idata->pulse : idata->space;
+ u16 val;
if (len + buffer[i] >= IR_SPI_MAX_BUFSIZE)
return -EINVAL;
--
2.11.0
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH] [media] rc: ir-spi: remove unnecessary initialization Andi Shyti <andi.shyti@samsung.com> - 2017-03-27 15:40 +0200
csiph-web