diff options
author | Mauro Carvalho Chehab <devnull@localhost> | 2006-01-15 08:56:15 +0000 |
---|---|---|
committer | Mauro Carvalho Chehab <devnull@localhost> | 2006-01-15 08:56:15 +0000 |
commit | 12bdab2810d0b5c60c50c165ad5f4e87afa2374e (patch) | |
tree | 18b84dd3d4f10c5591cf010ae09fcfd7f2ee592b /linux/drivers/media/video/cx88 | |
parent | 0eb270a16486a4ef9f87ffd9591bfe052d1dbf69 (diff) | |
download | mediapointer-dvb-s2-12bdab2810d0b5c60c50c165ad5f4e87afa2374e.tar.gz mediapointer-dvb-s2-12bdab2810d0b5c60c50c165ad5f4e87afa2374e.tar.bz2 |
From: Adrian Bunk <bunk@stusta.de>
make some code static
This patch makes some needlessly global code static.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/video/cx88')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-alsa.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-alsa.c b/linux/drivers/media/video/cx88/cx88-alsa.c index 891266e93..6af5ae759 100644 --- a/linux/drivers/media/video/cx88/cx88-alsa.c +++ b/linux/drivers/media/video/cx88/cx88-alsa.c @@ -1,5 +1,5 @@ /* - * $Id: cx88-alsa.c,v 1.30 2006/01/15 08:45:20 mchehab Exp $ + * $Id: cx88-alsa.c,v 1.31 2006/01/15 08:56:15 mchehab Exp $ * * Support for audio capture * PCI function #1 of the cx2388x. @@ -142,7 +142,7 @@ MODULE_PARM_DESC(debug,"enable debug messages"); * BOARD Specific: Sets audio DMA */ -int _cx88_start_audio_dma(snd_cx88_card_t *chip) +static int _cx88_start_audio_dma(snd_cx88_card_t *chip) { struct cx88_buffer *buf = chip->buf; struct cx88_core *core=chip->core; @@ -187,7 +187,7 @@ int _cx88_start_audio_dma(snd_cx88_card_t *chip) /* * BOARD Specific: Resets audio DMA */ -int _cx88_stop_audio_dma(snd_cx88_card_t *chip) +static int _cx88_stop_audio_dma(snd_cx88_card_t *chip) { struct cx88_core *core=chip->core; dprintk(1, "Stopping audio DMA\n"); @@ -627,7 +627,7 @@ static snd_kcontrol_new_t snd_cx88_capture_volume = { * Only boards with eeprom and byte 1 at eeprom=1 have it */ -struct pci_device_id cx88_audio_pci_tbl[] = { +static struct pci_device_id cx88_audio_pci_tbl[] = { {0x14f1,0x8801,PCI_ANY_ID,PCI_ANY_ID,0,0,0}, {0x14f1,0x8811,PCI_ANY_ID,PCI_ANY_ID,0,0,0}, {0, } |