diff options
author | Adrian Bunk <bunk@stusta.de> | 2007-05-01 07:35:10 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-05-09 09:12:29 -0400 |
commit | 9df2ead585515f32d6c9092780c3d13a9627a4a9 (patch) | |
tree | cd60aa90ef979ecaf63bf3d2bd403845b4b336e4 | |
parent | b71ed5cfe651051cd90b0e31c3cdb74953d6416f (diff) |
V4L/DVB (5567): Cx88-mpeg.c: make 2 functions static
This patch makes two needlessly global functions static.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
-rw-r--r-- | drivers/media/video/cx88/cx88-mpeg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/cx88/cx88-mpeg.c b/drivers/media/video/cx88/cx88-mpeg.c index 81916d9b5817..543b05ebc0e7 100644 --- a/drivers/media/video/cx88/cx88-mpeg.c +++ b/drivers/media/video/cx88/cx88-mpeg.c | |||
@@ -613,7 +613,7 @@ struct cx8802_driver * cx8802_get_driver(struct cx8802_dev *dev, enum cx88_board | |||
613 | } | 613 | } |
614 | 614 | ||
615 | /* Driver asked for hardware access. */ | 615 | /* Driver asked for hardware access. */ |
616 | int cx8802_request_acquire(struct cx8802_driver *drv) | 616 | static int cx8802_request_acquire(struct cx8802_driver *drv) |
617 | { | 617 | { |
618 | struct cx88_core *core = drv->core; | 618 | struct cx88_core *core = drv->core; |
619 | 619 | ||
@@ -633,7 +633,7 @@ int cx8802_request_acquire(struct cx8802_driver *drv) | |||
633 | } | 633 | } |
634 | 634 | ||
635 | /* Driver asked to release hardware. */ | 635 | /* Driver asked to release hardware. */ |
636 | int cx8802_request_release(struct cx8802_driver *drv) | 636 | static int cx8802_request_release(struct cx8802_driver *drv) |
637 | { | 637 | { |
638 | struct cx88_core *core = drv->core; | 638 | struct cx88_core *core = drv->core; |
639 | 639 | ||