Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 30565
b: refs/heads/master
c: e2e8115
h: refs/heads/master
i:
  30563: e07e296
v: v3
  • Loading branch information
Jesper Juhl authored and Dmitry Torokhov committed Jun 26, 2006
1 parent 7bb81fa commit 8f22207
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: b0c9ad8e0ff154f8c4730b8c4383f49b846c97c4
refs/heads/master: e2e8115b54aa6f159ac3dfec8d3d23b0af5fbfa0
6 changes: 3 additions & 3 deletions trunk/drivers/input/joystick/iforce/iforce-main.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ static struct iforce_device iforce_device[] = {

static int iforce_input_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
{
struct iforce* iforce = (struct iforce*)(dev->private);
struct iforce* iforce = dev->private;
unsigned char data[3];

if (type != EV_FF)
Expand Down Expand Up @@ -138,7 +138,7 @@ static int iforce_input_event(struct input_dev *dev, unsigned int type, unsigned
*/
static int iforce_upload_effect(struct input_dev *dev, struct ff_effect *effect)
{
struct iforce* iforce = (struct iforce*)(dev->private);
struct iforce* iforce = dev->private;
int id;
int ret;
int is_update;
Expand Down Expand Up @@ -218,7 +218,7 @@ static int iforce_upload_effect(struct input_dev *dev, struct ff_effect *effect)
*/
static int iforce_erase_effect(struct input_dev *dev, int effect_id)
{
struct iforce* iforce = (struct iforce*)(dev->private);
struct iforce* iforce = dev->private;
int err = 0;
struct iforce_core_effect* core_effect;

Expand Down

0 comments on commit 8f22207

Please sign in to comment.