Messages in this thread |  | | | Date | Tue, 27 May 2008 10:55:06 -0400 | | From | Dmitry Torokhov <> | | Subject | Re: [PATCH resend] HTC Shift Touchscreen Driver |
Hi Pau,
I have couple more comments...
On Tue, May 27, 2008 at 04:46:03PM +0200, Pau Oliva Fora (pof) wrote:
> +
> +static void htcpen_close(struct input_dev *dev)
> +{
> + free_irq(HTCPEN_IRQ, dev);
No, free_irq() should go into htcpen_remove(). Otherwise if we don't
unload the driver and open the device again we will not have IRQ
handler installed.
> + outb_p(DEVICE_DISABLE, HTCPEN_PORT_INIT);
> +}
> +
> +static int __devinit htcpen_isa_probe(struct device *dev, unsigned int id)
> +{
> + int err;
> + struct input_dev *htcpen_dev;
> +
> + inb_p(HTCPEN_PORT_IRQ_CLEAR);
You should not touch the ports until you resetved them with request
region.
--
Dmitry
|  |