/*
- m68k beeper driver for Linux
- Copyright © 2002 Richard Zidlicky
- Copyright © 2002 Vojtech Pavlik
- Copyright © 1992 Orest Zborowski
*/
/*
- This program is free software; you can redistribute it and/or modify it
- under the terms of the GNU General Public License version 2 as published by
- the Free Software Foundation
*/
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/input.h>
#include <linux/platform_device.h>
#include <asm/machdep.h>
#include <asm/io.h>
MODULE_AUTHOR(“xxx”);
MODULE_DESCRIPTION(“m68k beeper driver”);
MODULE_LICENSE(“GPL”);
static struct platform_device *m68kspkr_platform_device;
static int m68kspkr_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
{