Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 331008
b: refs/heads/master
c: 3920631
h: refs/heads/master
v: v3
  • Loading branch information
Sean Young authored and Mauro Carvalho Chehab committed Sep 15, 2012
1 parent 52eba67 commit fd2ddaf
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 31 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: aa740e0a6fd5fe6ab59a95d67d8756c77df3fa66
refs/heads/master: 3920631c4b8af70893fe70df53e94adb0cd66f71
51 changes: 21 additions & 30 deletions trunk/drivers/media/rc/iguanair.c
Original file line number Diff line number Diff line change
Expand Up @@ -334,34 +334,41 @@ static int iguanair_set_tx_mask(struct rc_dev *dev, uint32_t mask)
static int iguanair_tx(struct rc_dev *dev, unsigned *txbuf, unsigned count)
{
struct iguanair *ir = dev->priv;
uint8_t space, *payload;
unsigned i, size, rc, bytes;
uint8_t space;
unsigned i, size, periods, bytes;
int rc;
struct send_packet *packet;

mutex_lock(&ir->lock);

packet = kmalloc(sizeof(*packet) + ir->bufsize, GFP_KERNEL);
if (!packet) {
rc = -ENOMEM;
goto out;
}

/* convert from us to carrier periods */
for (i = size = 0; i < count; i++) {
txbuf[i] = DIV_ROUND_CLOSEST(txbuf[i] * ir->carrier, 1000000);
bytes = (txbuf[i] + 126) / 127;
for (i = space = size = 0; i < count; i++) {
periods = DIV_ROUND_CLOSEST(txbuf[i] * ir->carrier, 1000000);
bytes = DIV_ROUND_UP(periods, 127);
if (size + bytes > ir->bufsize) {
count = i;
break;
}
size += bytes;
while (periods > 127) {
packet->payload[size++] = 127 | space;
periods -= 127;
}

packet->payload[size++] = periods | space;
space ^= 0x80;
}

if (count == 0) {
rc = -EINVAL;
goto out;
}

packet = kmalloc(sizeof(*packet) + size, GFP_KERNEL);
if (!packet) {
rc = -ENOMEM;
goto out;
}

packet->header.start = 0;
packet->header.direction = DIR_OUT;
packet->header.cmd = CMD_SEND;
Expand All @@ -370,26 +377,11 @@ static int iguanair_tx(struct rc_dev *dev, unsigned *txbuf, unsigned count)
packet->busy7 = ir->busy7;
packet->busy4 = ir->busy4;

space = 0;
payload = packet->payload;

for (i = 0; i < count; i++) {
unsigned periods = txbuf[i];

while (periods > 127) {
*payload++ = 127 | space;
periods -= 127;
}

*payload++ = periods | space;
space ^= 0x80;
}

if (ir->receiver_on) {
rc = iguanair_receiver(ir, false);
if (rc) {
dev_warn(ir->dev, "disable receiver before transmit failed\n");
goto out_kfree;
goto out;
}
}

Expand All @@ -405,9 +397,8 @@ static int iguanair_tx(struct rc_dev *dev, unsigned *txbuf, unsigned count)
dev_warn(ir->dev, "re-enable receiver after transmit failed\n");
}

out_kfree:
kfree(packet);
out:
kfree(packet);
mutex_unlock(&ir->lock);

return rc ? rc : count;
Expand Down

0 comments on commit fd2ddaf

Please sign in to comment.