summaryrefslogtreecommitdiffstats
path: root/target/linux/pxa/patches-2.6.21/026-pcm-gcc-411-bugfix.patch
diff options
context:
space:
mode:
authorkaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-02-09 00:11:50 +0000
committerkaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-02-09 00:11:50 +0000
commitd4db749fd7871921ff4a6aeb6e9631c641851998 (patch)
treea1637f5df5b2c6175a4c8b17f73d0f7808361fa7 /target/linux/pxa/patches-2.6.21/026-pcm-gcc-411-bugfix.patch
parented2d03fdee38a559d628e947cb23ef46a04f16f8 (diff)
[pxa]: upgrade to 2.6.32.7, switch to squashfs, remove broken flag
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19562 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/pxa/patches-2.6.21/026-pcm-gcc-411-bugfix.patch')
-rw-r--r--target/linux/pxa/patches-2.6.21/026-pcm-gcc-411-bugfix.patch54
1 files changed, 0 insertions, 54 deletions
diff --git a/target/linux/pxa/patches-2.6.21/026-pcm-gcc-411-bugfix.patch b/target/linux/pxa/patches-2.6.21/026-pcm-gcc-411-bugfix.patch
deleted file mode 100644
index e7d8a10b7..000000000
--- a/target/linux/pxa/patches-2.6.21/026-pcm-gcc-411-bugfix.patch
+++ /dev/null
@@ -1,54 +0,0 @@
---- a/include/sound/pcm_params.h
-+++ b/include/sound/pcm_params.h
-@@ -179,16 +179,8 @@ static inline int snd_mask_single(const
- return 1;
- }
-
--static inline int snd_mask_refine(struct snd_mask *mask,
-- const struct snd_mask *v)
--{
-- struct snd_mask old;
-- snd_mask_copy(&old, mask);
-- snd_mask_intersect(mask, v);
-- if (snd_mask_empty(mask))
-- return -EINVAL;
-- return !snd_mask_eq(mask, &old);
--}
-+void snd_mask_print( const struct snd_mask *m1, const struct snd_mask *m2 );
-+int snd_mask_refine(struct snd_mask *mask, const struct snd_mask *v);
-
- static inline int snd_mask_refine_first(struct snd_mask *mask)
- {
---- a/sound/core/pcm_lib.c
-+++ b/sound/core/pcm_lib.c
-@@ -2128,3 +2128,18 @@ snd_pcm_sframes_t snd_pcm_lib_readv(stru
- }
-
- EXPORT_SYMBOL(snd_pcm_lib_readv);
-+
-+int snd_mask_refine(struct snd_mask *mask,
-+ const struct snd_mask *v)
-+{
-+ struct snd_mask old;
-+ snd_mask_copy(&old, mask);
-+ snd_mask_print(mask, v);
-+ snd_mask_intersect(mask, v);
-+ snd_mask_print(mask, v);
-+ if (snd_mask_empty(mask))
-+ return -EINVAL;
-+ return !snd_mask_eq(mask, &old);
-+}
-+
-+EXPORT_SYMBOL(snd_mask_refine);
---- a/sound/core/pcm_native.c
-+++ b/sound/core/pcm_native.c
-@@ -3450,3 +3450,9 @@ const struct file_operations snd_pcm_f_o
- .fasync = snd_pcm_fasync,
- }
- };
-+
-+void snd_mask_print( const struct snd_mask *m1, const struct snd_mask *m2 )
-+{
-+// printk( "0x%08x %08x v: 0x%08x %08x\n", m1->bits[1], m1->bits[0], m2->bits[1], m2->bits[0] );
-+}
-+