Source
14
14
* GNU General Public License for more details.
15
15
*
16
16
* You should have received a copy of the GNU General Public License
17
17
* along with this program; if not, write to the Free Software
18
18
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19
19
*/
20
20
#include <linux/platform_device.h>
21
21
#include <linux/fs.h>
22
22
#include <linux/init.h>
23
23
#include <linux/module.h>
24
+
#include <linux/uaccess.h>
24
25
25
26
#include <asm/io.h>
26
27
#include <asm/reboot.h>
27
28
#include <asm/vr41xx/giu.h>
28
29
#include <asm/vr41xx/tb0219.h>
29
30
30
31
MODULE_AUTHOR("Yoichi Yuasa <yuasa@linux-mips.org>");
31
32
MODULE_DESCRIPTION("TANBAC TB0219 base board driver");
32
33
MODULE_LICENSE("GPL");
33
34