Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a957641bbafc9f44050c965fe1ddc0f7b771d416
Commit:     a957641bbafc9f44050c965fe1ddc0f7b771d416
Parent:     74fa39e5902faf1f5eb3ee642e2e069875a0343e
Author:     Hans Verkuil <[EMAIL PROTECTED]>
AuthorDate: Tue May 29 07:18:55 2007 -0300
Committer:  Mauro Carvalho Chehab <[EMAIL PROTECTED]>
CommitDate: Wed Jul 18 14:23:50 2007 -0300

    V4L/DVB (5729): Remove support for 256 Kb firmware files.
    
    For backwards compatibility firmware files of 256 Kb were allowed: all
    drivers have now been updated to support the newer larger firmwares so
    remove this compatibility code and only support the newer firmware.
    
    Signed-off-by: Hans Verkuil <[EMAIL PROTECTED]>
    Signed-off-by: Mauro Carvalho Chehab <[EMAIL PROTECTED]>
---
 drivers/media/video/ivtv/ivtv-firmware.c |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/drivers/media/video/ivtv/ivtv-firmware.c 
b/drivers/media/video/ivtv/ivtv-firmware.c
index d4c910b..2b6208a 100644
--- a/drivers/media/video/ivtv/ivtv-firmware.c
+++ b/drivers/media/video/ivtv/ivtv-firmware.c
@@ -56,9 +56,7 @@ retry:
                volatile u32 __iomem *dst = (volatile u32 __iomem *)mem;
                const u32 *src = (const u32 *)fw->data;
 
-               /* temporarily allow 256 KB encoding firmwares as well for
-                  compatibility with blackbird cards */
-               if (fw->size != size && fw->size != 256 * 1024) {
+               if (fw->size != size) {
                        /* Due to race conditions in firmware loading (esp. 
with udev <0.95)
                           the wrong file was sometimes loaded. So we check 
filesizes to
                           see if at least the right-sized file was loaded. If 
not, then we
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to