diff options
author | blogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-10-05 10:12:53 +0000 |
---|---|---|
committer | blogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-10-05 10:12:53 +0000 |
commit | 5c105d9f3fd086aff195d3849dcf847d6b0bd927 (patch) | |
tree | 1229a11f725bfa58aa7c57a76898553bb5f6654a /package/grub/patches/210-remove_inline_asm.patch | |
download | openwrt-5c105d9f3fd086aff195d3849dcf847d6b0bd927.tar.gz openwrt-5c105d9f3fd086aff195d3849dcf847d6b0bd927.zip |
branch Attitude Adjustment
git-svn-id: svn://svn.openwrt.org/openwrt/branches/attitude_adjustment@33625 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/grub/patches/210-remove_inline_asm.patch')
-rw-r--r-- | package/grub/patches/210-remove_inline_asm.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/package/grub/patches/210-remove_inline_asm.patch b/package/grub/patches/210-remove_inline_asm.patch new file mode 100644 index 000000000..8eb9fc2c9 --- /dev/null +++ b/package/grub/patches/210-remove_inline_asm.patch @@ -0,0 +1,14 @@ +--- a/stage2/fsys_iso9660.c ++++ b/stage2/fsys_iso9660.c +@@ -83,10 +83,7 @@ iso9660_devread (int sector, int byte_of + + sector += (byte_offset >> sector_size_lg2); + byte_offset &= (buf_geom.sector_size - 1); +- asm volatile ("shl%L0 %1,%0" +- : "=r"(sector) +- : "Ic"((int8_t)(ISO_SECTOR_BITS - sector_size_lg2)), +- "0"(sector)); ++ sector <<= ISO_SECTOR_BITS - sector_size_lg2; + + #if !defined(STAGE1_5) + if (disk_read_hook && debug) |