diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2007-09-30 11:14:03 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2007-09-30 11:14:03 +0000 |
| commit | ef1c52fa4390075000db585e5833324b38329f40 (patch) | |
| tree | ce85cef9aee73d2dd13522289d20b6fdb725c3f8 | |
| parent | e760ba5a04260c8fd994f7cbdc599e560552164e (diff) | |
| download | rockbox-ef1c52fa4390075000db585e5833324b38329f40.zip rockbox-ef1c52fa4390075000db585e5833324b38329f40.tar.gz rockbox-ef1c52fa4390075000db585e5833324b38329f40.tar.bz2 rockbox-ef1c52fa4390075000db585e5833324b38329f40.tar.xz | |
Oops. Don't use outl with the defined register.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14913 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/target/arm/system-pp502x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/arm/system-pp502x.c b/firmware/target/arm/system-pp502x.c index 55cd824..a817c8d 100644 --- a/firmware/target/arm/system-pp502x.c +++ b/firmware/target/arm/system-pp502x.c @@ -291,7 +291,7 @@ void system_reboot(void) /* Magic used by the c200 OF: 0x23066000 Magic used by the c200 BL: 0x23066b7b In both cases, the OF executes these 2 commands from iram. */ - outl(0x23066b7b, STRAP_OPT_A); + STRAP_OPT_A = 0x23066b7b; DEV_RS = DEV_SYSTEM; #else DEV_RS |= DEV_SYSTEM; |