yet another 64-bit libgcc callout
This commit is contained in:
parent
a2366c0397
commit
963bc0bed3
13
arm-sound-soc-samsung-dma-avoid-another-64bit-division.patch
Normal file
13
arm-sound-soc-samsung-dma-avoid-another-64bit-division.patch
Normal file
@ -0,0 +1,13 @@
|
||||
diff --git a/sound/soc/samsung/dma.c b/sound/soc/samsung/dma.c
|
||||
index 21b7926..19e6662 100644
|
||||
--- a/sound/soc/samsung/dma.c
|
||||
+++ b/sound/soc/samsung/dma.c
|
||||
@@ -76,7 +76,7 @@ static void dma_enqueue(struct snd_pcm_substream *substream)
|
||||
|
||||
pr_debug("Entered %s\n", __func__);
|
||||
|
||||
- limit = (prtd->dma_end - prtd->dma_start) / prtd->dma_period;
|
||||
+ limit = (u32)(prtd->dma_end - prtd->dma_start) / prtd->dma_period;
|
||||
|
||||
pr_debug("%s: loaded %d, limit %d\n",
|
||||
__func__, prtd->dma_loaded, limit);
|
@ -695,6 +695,7 @@ Patch15000: nowatchdog-on-virt.patch
|
||||
Patch21001: arm-lpae-ax88796.patch
|
||||
Patch21002: drm-exynos-fix-multiple-definition-build-error.patch
|
||||
Patch21003: arm-dma-amba_pl08x-avoid-64bit-division.patch
|
||||
Patch21004: arm-sound-soc-samsung-dma-avoid-another-64bit-division.patch
|
||||
|
||||
# ARM omap
|
||||
Patch21010: arm-omap-load-tfp410.patch
|
||||
@ -1304,6 +1305,7 @@ ApplyPatch debug-bad-pte-modules.patch
|
||||
ApplyPatch arm-lpae-ax88796.patch
|
||||
ApplyPatch drm-exynos-fix-multiple-definition-build-error.patch
|
||||
ApplyPatch arm-dma-amba_pl08x-avoid-64bit-division.patch
|
||||
ApplyPatch arm-sound-soc-samsung-dma-avoid-another-64bit-division.patch
|
||||
ApplyPatch arm-omap-load-tfp410.patch
|
||||
ApplyPatch arm-tegra-usb-no-reset-linux33.patch
|
||||
ApplyPatch arm-tegra-remove-direct-vbus-regulator-control.patch
|
||||
@ -2249,6 +2251,9 @@ fi
|
||||
# || ||
|
||||
%changelog
|
||||
* Mon Jul 29 2013 Kyle McMartin <kyle@redhat.com> - 3.11.0-0.rc3.git0.1
|
||||
- arm-sound-soc-samsung-dma-avoid-another-64bit-division.patch: ditto
|
||||
|
||||
* Mon Jul 29 2013 Kyle McMartin <kyle@redhat.com>
|
||||
- arm-dma-amba_pl08x-avoid-64bit-division.patch: STAHP libgcc callouts
|
||||
|
||||
* Mon Jul 29 2013 Josh Boyer <jwboyer@redhat.com>
|
||||
|
Loading…
Reference in New Issue
Block a user