Commit 155542c2 authored by Adrian Bunk's avatar Adrian Bunk Committed by Linus Torvalds
Browse files

[PATCH] sound/oss/: cleanups



This patch contains cleanups including the following:
- make needlessly global code static

Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 4b849727
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -592,7 +592,7 @@ typedef struct mixer_def mixer_ent;
  {{reg_l, pola_l, pos_l, len_l}, {reg_r, pola_r, pos_r, len_r}}


mixer_ent mix_devices[SOUND_MIXER_NRDEVICES][2] = {
static mixer_ent mix_devices[SOUND_MIXER_NRDEVICES][2] = {
MIX_ENT(SOUND_MIXER_VOLUME,	14, 1, 8, 5,	14, 1, 0, 5),
MIX_ENT(SOUND_MIXER_BASS,	 0, 0, 0, 0,	 0, 0, 0, 0),
MIX_ENT(SOUND_MIXER_TREBLE,	 0, 0, 0, 0,	 0, 0, 0, 0),
+1 −1
Original line number Diff line number Diff line
@@ -284,7 +284,7 @@ nm256_readBuffer8 (struct nm256_info *card, u8 *dst, int port, int offset,
}

/* Returns a non-zero value if we should use the coefficient cache. */
extern int nm256_cachedCoefficients (struct nm256_info *card);
static int nm256_cachedCoefficients (struct nm256_info *card);

#endif

+2 −2
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@
#include "nm256.h"
#include "nm256_coeff.h"

int nm256_debug;
static int nm256_debug;
static int force_load;

/* 
@@ -138,7 +138,7 @@ static int usecache;
static int buffertop;

/* Check to see if we're using the bank of cached coefficients. */
int
static int
nm256_cachedCoefficients (struct nm256_info *card)
{
    return usecache;
+1 −1
Original line number Diff line number Diff line
@@ -4650,7 +4650,7 @@ nm256_loadAllCoefficients (struct nm256_info *card)
    card->coeffsCurrent = 1;
}

void
static void
nm256_loadCoefficient (struct nm256_info *card, int which, int number)
{
    static u16 addrs[3] = { 0x1c, 0x21c, 0x408 };
+0 −2
Original line number Diff line number Diff line
@@ -39,8 +39,6 @@ static void *midi_mem = NULL;
 */


void            (*midi_input_intr) (int dev, unsigned char data);

static int v_midi_open (int dev, int mode,
	      void            (*input) (int dev, unsigned char data),
	      void            (*output) (int dev)
Loading