Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 320159
b: refs/heads/master
c: 500c320
h: refs/heads/master
i:
  320157: e36e19e
  320155: dd2824e
  320151: 286b615
  320143: 867913d
  320127: 386170a
v: v3
  • Loading branch information
Du, Changbin authored and Mauro Carvalho Chehab committed Jul 6, 2012
1 parent 1ccfe51 commit ab742f9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 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: 87e9429490dfe610faaf209795942272bc7a730a
refs/heads/master: 500c3201e2aed201f2de0468dfeb3ceb98a9f981
5 changes: 4 additions & 1 deletion trunk/drivers/media/rc/gpio-ir-recv.c
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ static int __devinit gpio_ir_recv_probe(struct platform_device *pdev)

rcdev->priv = gpio_dev;
rcdev->driver_type = RC_DRIVER_IR_RAW;
rcdev->allowed_protos = RC_TYPE_ALL;
rcdev->input_name = GPIO_IR_DEVICE_NAME;
rcdev->input_phys = GPIO_IR_DEVICE_NAME "/input0";
rcdev->input_id.bustype = BUS_HOST;
Expand All @@ -93,6 +92,10 @@ static int __devinit gpio_ir_recv_probe(struct platform_device *pdev)
rcdev->input_id.version = 0x0100;
rcdev->dev.parent = &pdev->dev;
rcdev->driver_name = GPIO_IR_DRIVER_NAME;
if (pdata->allowed_protos)
rcdev->allowed_protos = pdata->allowed_protos;
else
rcdev->allowed_protos = RC_TYPE_ALL;
rcdev->map_name = pdata->map_name ?: RC_MAP_EMPTY;

gpio_dev->rcdev = rcdev;
Expand Down
7 changes: 4 additions & 3 deletions trunk/include/media/gpio-ir-recv.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@
#define __GPIO_IR_RECV_H__

struct gpio_ir_recv_platform_data {
int gpio_nr;
bool active_low;
const char *map_name;
int gpio_nr;
bool active_low;
u64 allowed_protos;
const char *map_name;
};

#endif /* __GPIO_IR_RECV_H__ */
Expand Down

0 comments on commit ab742f9

Please sign in to comment.