added option to atheros kernel to be able to disable reset button from inside the fon mp3 driver

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8969 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
John Crispin
2007-09-23 00:32:31 +00:00
parent 7b10557aee
commit 9da5eb2da7
3 changed files with 26 additions and 2 deletions

View File

@@ -31,6 +31,7 @@
#include <linux/init.h>
#include <linux/genhd.h>
#include <linux/device.h>
#include <asm-mips/mach-atheros/reset.h>
// do we want debuging info ?
#if 0
@@ -282,6 +283,10 @@ static int __init mod_init(void){
printk("mp3_drv.ko : Made by John '2B|!2B' Crispin (john@phrozen.org)\n");
printk("mp3_drv.ko : Starting ...\n");
printk("disabling atheros reset button irq\n");
ar531x_disable_reset_button();
if(register_chrdev(DEV_MAJOR, DEV_NAME, &modulemp3_fops)) {
printk( "mp3_drv.ko : Error whilst opening %s (%d)\n", DEV_NAME, DEV_MAJOR);
return( -ENODEV );