summaryrefslogtreecommitdiffstats
path: root/target/linux/generic-2.4/patches/222-sound.patch
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-06-26 20:42:18 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-06-26 20:42:18 +0000
commiteb81d2d1629a0ecc62066ca593d55e97485d1408 (patch)
tree9264d2b913f480a708714830608dc5615c016ecc /target/linux/generic-2.4/patches/222-sound.patch
parent4b7db99798885095b033f783fc43fd05f35ce99d (diff)
remove generic linux 2.4 support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21948 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic-2.4/patches/222-sound.patch')
-rw-r--r--target/linux/generic-2.4/patches/222-sound.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/target/linux/generic-2.4/patches/222-sound.patch b/target/linux/generic-2.4/patches/222-sound.patch
deleted file mode 100644
index 7f3a1a331..000000000
--- a/target/linux/generic-2.4/patches/222-sound.patch
+++ /dev/null
@@ -1,26 +0,0 @@
---- a/drivers/sound/sound_core.c
-+++ b/drivers/sound/sound_core.c
-@@ -174,9 +174,9 @@ static int sound_insert_unit(struct soun
- }
-
- if (r == low)
-- sprintf (name_buf, "%s", name);
-+ snprintf (name_buf, sizeof(name_buf), "%s", name);
- else
-- sprintf (name_buf, "%s%d", name, (r - low) / SOUND_STEP);
-+ snprintf (name_buf, sizeof(name_buf), "%s%d", name, (r - low) / SOUND_STEP);
- s->de = devfs_register (devfs_handle, name_buf,
- DEVFS_FL_NONE, SOUND_MAJOR, s->unit_minor,
- S_IFCHR | mode, fops, NULL);
-@@ -507,9 +507,9 @@ int soundcore_open(struct inode *inode,
- * ALSA toplevel modules for soundcards, thus we need
- * load them at first. [Jaroslav Kysela <perex@jcu.cz>]
- */
-- sprintf(mod, "sound-slot-%i", unit>>4);
-+ snprintf(mod, sizeof(mod), "sound-slot-%i", unit>>4);
- request_module(mod);
-- sprintf(mod, "sound-service-%i-%i", unit>>4, chain);
-+ snprintf(mod, sizeof(mod), "sound-service-%i-%i", unit>>4, chain);
- request_module(mod);
- spin_lock(&sound_loader_lock);
- s = __look_for_unit(chain, unit);