i.MX31: Fix a couple oopses from r31528

Enabled a PMIC event where it should be disabled. Used constant from wrong enum
to get sense bits (??) which messed up main charger detection.

Also remove an obsolete struct declaration.


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31536 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Sevakis 2012-01-03 06:13:59 +00:00
parent 4c917f76c6
commit 30c4efcd16
3 changed files with 2 additions and 9 deletions

View File

@ -1338,12 +1338,6 @@ struct mc13783_event
void (*callback)(void);
};
struct mc13783_event_list
{
unsigned count;
const struct mc13783_event *events;
};
void mc13783_enable_event(enum mc13783_event_ids id, bool enable);
/* Read the sense bit if one exists - valid only within event handlers */

View File

@ -213,7 +213,7 @@ void button_close_device(void)
/* Assumes HP detection is not available */
initialized = false;
mc13783_enable_event(MC13783_ONOFD1_EVENT, true);
mc13783_enable_event(MC13783_ONOFD1_EVENT, false);
ext_btn = BUTTON_NONE;
}
#endif /* BUTTON_DRIVER_CLOSE */

View File

@ -68,8 +68,7 @@ static void update_main_charger(bool present)
/* Detect changes in presence of the AC adaptor. Called from PMIC ISR. */
void charger_main_detect_event(void)
{
update_main_charger(mc13783_event_sense(MC13783_INT_ID_SE1)
& MC13783_SE1S);
update_main_charger(mc13783_event_sense(MC13783_SE1_EVENT));
}
/* Detect changes in USB bus power. Called from usb connect event ISR. */