diff options
| author | <jgarzik@pretzel.yyz.us> | 2005-05-27 20:09:40 -0400 | 
|---|---|---|
| committer | Jeff Garzik <jgarzik@pobox.com> | 2005-05-27 20:09:40 -0400 | 
| commit | 07b08a16186bd083ba06c37c621ea91fc580eb97 (patch) | |
| tree | 7374b11612cacdccb51cd386c6e40beaee8a692c /drivers/usb/media/pwc/pwc-if.c | |
| parent | 462cee296476278acaa54c41925b3273e0e4dd40 (diff) | |
| parent | 254feb882a7c6e4e51416dff6a97d847fbbba551 (diff) | |
Automatic merge of rsync://rsync.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git branch HEAD
Diffstat (limited to 'drivers/usb/media/pwc/pwc-if.c')
| -rw-r--r-- | drivers/usb/media/pwc/pwc-if.c | 9 | 
1 files changed, 5 insertions, 4 deletions
diff --git a/drivers/usb/media/pwc/pwc-if.c b/drivers/usb/media/pwc/pwc-if.c index cca47f480a8b..5429ff3b9753 100644 --- a/drivers/usb/media/pwc/pwc-if.c +++ b/drivers/usb/media/pwc/pwc-if.c @@ -68,8 +68,6 @@  #include "pwc-ioctl.h"  #include "pwc-kiara.h"  #include "pwc-timon.h" -#include "pwc-dec23.h" -#include "pwc-dec1.h"  #include "pwc-uncompress.h"  /* Function prototypes and driver templates */ @@ -322,6 +320,7 @@ static int pwc_allocate_buffers(struct pwc_device *pdev)  	  case 730:  	  case 740:  	  case 750: +#if 0	    	    Trace(TRACE_MEMORY,"private_data(%zu)\n",sizeof(struct pwc_dec23_private));  	    kbuf = kmalloc(sizeof(struct pwc_dec23_private), GFP_KERNEL);	/* Timon & Kiara */  	    break; @@ -330,6 +329,8 @@ static int pwc_allocate_buffers(struct pwc_device *pdev)  	    /* TODO & FIXME */  	    kbuf = kmalloc(sizeof(struct pwc_dec23_private), GFP_KERNEL);  	    break; +#endif	  +	;  	 }  	if (kbuf == NULL) {  	   Err("Failed to allocate decompress table.\n"); @@ -1131,11 +1132,11 @@ static int pwc_video_close(struct inode *inode, struct file *file)  	  case 730:  	  case 740:  	  case 750: -	    pwc_dec23_exit();	/* Timon & Kiara */ +/*	    pwc_dec23_exit();	*//* Timon & Kiara */  	    break;  	  case 645:  	  case 646: -	    pwc_dec1_exit(); +/*	    pwc_dec1_exit(); */  	    break;  	 }  | 
