diff options
author | stroese <stroese> | 2003-07-11 08:20:33 +0000 |
---|---|---|
committer | stroese <stroese> | 2003-07-11 08:20:33 +0000 |
commit | 5b8b65251920382dedce87e9ef71def2fb304841 (patch) | |
tree | 838fedde35de4ba88a0da886b4ff664738b55dd3 | |
parent | 2e533c373daa306f2656a181b44b71f0916e9a55 (diff) | |
download | u-boot-imx-5b8b65251920382dedce87e9ef71def2fb304841.zip u-boot-imx-5b8b65251920382dedce87e9ef71def2fb304841.tar.gz u-boot-imx-5b8b65251920382dedce87e9ef71def2fb304841.tar.bz2 |
- Fixed interrupt polarity.
-rw-r--r-- | board/esd/ash405/ash405.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/esd/ash405/ash405.c b/board/esd/ash405/ash405.c index f45ecf1..50dbade 100644 --- a/board/esd/ash405/ash405.c +++ b/board/esd/ash405/ash405.c @@ -67,7 +67,7 @@ int board_pre_init (void) mtdcr(uicsr, 0xFFFFFFFF); /* clear all ints */ mtdcr(uicer, 0x00000000); /* disable all ints */ mtdcr(uiccr, 0x00000000); /* set all to be non-critical*/ - mtdcr(uicpr, 0xFFFFFF81); /* set int polarities */ + mtdcr(uicpr, 0xFFFFFF9F); /* set int polarities */ mtdcr(uictr, 0x10000000); /* set int trigger levels */ mtdcr(uicvcr, 0x00000001); /* set vect base=0,INT0 highest priority*/ mtdcr(uicsr, 0xFFFFFFFF); /* clear all ints */ |