Signed-off-by: Andrew Morton --- 25-akpm/drivers/usb/media/pwc-uncompress.h | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff -puN drivers/usb/media/pwc-uncompress.h~pwc-uncompress-build-fix drivers/usb/media/pwc-uncompress.h --- 25/drivers/usb/media/pwc-uncompress.h~pwc-uncompress-build-fix 2004-06-26 15:24:47.696000400 -0700 +++ 25-akpm/drivers/usb/media/pwc-uncompress.h 2004-06-26 15:25:01.743864800 -0700 @@ -48,9 +48,10 @@ struct pwc_decompressor int type; /* type of camera (645, 680, etc) */ int table_size; /* memory needed */ - asmlinkage void (* init)(int type, int release, void *buffer, void *table); /* Initialization routine; should be called after each set_video_mode */ - asmlinkage void (* exit)(void); /* Cleanup routine */ - asmlinkage void (* decompress)(struct pwc_coord *image, struct pwc_coord *view, struct pwc_coord *offset, + void (* init)(int type, int release, void *buffer, void *table); /* Initialization routine; should be called after each set_video_mode */ + void (* exit)(void); /* Cleanup routine */ + void (* decompress)(struct pwc_coord *image, struct pwc_coord *view, + struct pwc_coord *offset, void *src, void *dst, int flags, void *table, int bandlength); void (* lock)(void); /* make sure module cannot be unloaded */ _