> +static int __init amikbd_init(void)
> +{
> + int i;
> +
> + if (!AMIGAHW_PRESENT(AMI_KEYBOARD))
> + return -EIO;
Please add
if (!request_mem_region(CIAA_PHYSADDR-1+0xb00, 0x100, "amikeyb"))
return -EBUSY;
here (cfr. drivers/char/amikeyb.c).
> +static void __exit amikbd_exit(void)
> +{
> + input_unregister_device(&amikbd_dev);
> + free_irq(IRQ_AMIGA_CIAA_SP, amikbd_interrupt);
And
release_mem_region(CIAA_PHYSADDR-1+0xb00, 0x100);
here.
Gr{oetje,eeting}s,
Geert
-- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.orgIn personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds
- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/