Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 303674
b: refs/heads/master
c: 80f8594
h: refs/heads/master
v: v3
  • Loading branch information
Greg Kroah-Hartman committed May 2, 2012
1 parent 77da69d commit deb0b6e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 14 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: aa330384a6444682126de5dd49982fa428badd08
refs/heads/master: 80f8594f63dd35179235aa22901dfa5ce786fe00
24 changes: 11 additions & 13 deletions trunk/drivers/input/mouse/appletouch.c
Original file line number Diff line number Diff line change
Expand Up @@ -253,16 +253,17 @@ MODULE_PARM_DESC(debug, "Activate debugging output");
* packets (Report ID 2). This code changes device mode, so it
* sends raw sensor reports (Report ID 5).
*/
static int atp_geyser_init(struct usb_device *udev)
static int atp_geyser_init(struct atp *dev)
{
struct usb_device *udev = dev->udev;
char *data;
int size;
int i;
int ret;

data = kmalloc(8, GFP_KERNEL);
if (!data) {
dev_err(&udev->dev, "Out of memory\n");
dev_err(&dev->input->dev, "Out of memory\n");
return -ENOMEM;
}

Expand All @@ -277,7 +278,7 @@ static int atp_geyser_init(struct usb_device *udev)
for (i = 0; i < 8; i++)
dprintk("appletouch[%d]: %d\n", i, data[i]);

dev_err(&udev->dev, "Failed to read mode from device.\n");
dev_err(&dev->input->dev, "Failed to read mode from device.\n");
ret = -EIO;
goto out_free;
}
Expand All @@ -296,7 +297,7 @@ static int atp_geyser_init(struct usb_device *udev)
for (i = 0; i < 8; i++)
dprintk("appletouch[%d]: %d\n", i, data[i]);

dev_err(&udev->dev, "Failed to request geyser raw mode\n");
dev_err(&dev->input->dev, "Failed to request geyser raw mode\n");
ret = -EIO;
goto out_free;
}
Expand All @@ -313,15 +314,14 @@ static int atp_geyser_init(struct usb_device *udev)
static void atp_reinit(struct work_struct *work)
{
struct atp *dev = container_of(work, struct atp, work);
struct usb_device *udev = dev->udev;
int retval;

dprintk("appletouch: putting appletouch to sleep (reinit)\n");
atp_geyser_init(udev);
atp_geyser_init(dev);

retval = usb_submit_urb(dev->urb, GFP_ATOMIC);
if (retval)
dev_err(&udev->dev,
dev_err(&dev->input->dev,
"atp_reinit: usb_submit_urb failed with error %d\n",
retval);
}
Expand Down Expand Up @@ -589,7 +589,7 @@ static void atp_complete_geyser_1_2(struct urb *urb)
exit:
retval = usb_submit_urb(dev->urb, GFP_ATOMIC);
if (retval)
dev_err(&dev->udev->dev,
dev_err(&dev->input->dev,
"atp_complete: usb_submit_urb failed with result %d\n",
retval);
}
Expand Down Expand Up @@ -724,7 +724,7 @@ static void atp_complete_geyser_3_4(struct urb *urb)
exit:
retval = usb_submit_urb(dev->urb, GFP_ATOMIC);
if (retval)
dev_err(&dev->udev->dev,
dev_err(&dev->input->dev,
"atp_complete: usb_submit_urb failed with result %d\n",
retval);
}
Expand All @@ -751,14 +751,12 @@ static void atp_close(struct input_dev *input)

static int atp_handle_geyser(struct atp *dev)
{
struct usb_device *udev = dev->udev;

if (dev->info != &fountain_info) {
/* switch to raw sensor mode */
if (atp_geyser_init(udev))
if (atp_geyser_init(dev))
return -EIO;

printk(KERN_INFO "appletouch: Geyser mode initialized.\n");
dev_info(&dev->input->dev, "Geyser mode initialized.\n");
}

return 0;
Expand Down

0 comments on commit deb0b6e

Please sign in to comment.