| Submitter | Andreas Bießmann |
|---|---|
| Date | Aug. 16, 2012, 12:19 p.m. |
| Message ID | <1345119559-16380-1-git-send-email-andreas.devel@googlemail.com> |
| Download | mbox | patch |
| Permalink | /patch/177976/ |
| State | Accepted |
| Commit | 6314c84df1155474d0202b51057d1f149ac07db0 |
| Delegated to: | Andreas Bießmann |
| Headers | show |
Comments
Patch
diff --git a/arch/avr32/cpu/at32ap700x/portmux.c b/arch/avr32/cpu/at32ap700x/portmux.c index e3e38a2..7eb42de 100644 --- a/arch/avr32/cpu/at32ap700x/portmux.c +++ b/arch/avr32/cpu/at32ap700x/portmux.c @@ -122,7 +122,7 @@ void portmux_enable_macb1(unsigned long flags, unsigned long drive_strength) portd_mask |= (1 << 15);/* SPD */ /* REVISIT: Some pins are probably pure outputs */ - portmux_select_peripheral(PORTMUX_PORT_D, portc_mask, + portmux_select_peripheral(PORTMUX_PORT_D, portd_mask, PORTMUX_FUNC_B, PORTMUX_BUSKEEPER); portmux_select_peripheral(PORTMUX_PORT_C, portc_mask, PORTMUX_FUNC_B, PORTMUX_BUSKEEPER);
Use portd_mask instead of portc_mask to setup the pins for port D. Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com> --- arch/avr32/cpu/at32ap700x/portmux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)