summaryrefslogtreecommitdiffstats
path: root/package/grub/patches/210-remove_inline_asm.patch
diff options
context:
space:
mode:
Diffstat (limited to 'package/grub/patches/210-remove_inline_asm.patch')
-rw-r--r--package/grub/patches/210-remove_inline_asm.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/package/grub/patches/210-remove_inline_asm.patch b/package/grub/patches/210-remove_inline_asm.patch
deleted file mode 100644
index 8eb9fc2c97..0000000000
--- a/package/grub/patches/210-remove_inline_asm.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- 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)