Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 3383
b: refs/heads/master
c: 155542c
h: refs/heads/master
i:
  3381: c3f8d78
  3379: d1271a5
  3375: 5e4036f
v: v3
  • Loading branch information
Adrian Bunk authored and Linus Torvalds committed Jun 25, 2005
1 parent 77cb689 commit f3d2b07
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 14 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4b8497276a96928bcb5947cc44e61f8b69fe66ac
refs/heads/master: 155542c271ba76fec37146b26aea1001019eb60d
2 changes: 1 addition & 1 deletion trunk/sound/oss/ad1816.c
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down
2 changes: 1 addition & 1 deletion trunk/sound/oss/nm256.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions trunk/sound/oss/nm256_audio.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#include "nm256.h"
#include "nm256_coeff.h"

int nm256_debug;
static int nm256_debug;
static int force_load;

/*
Expand Down Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion trunk/sound/oss/nm256_coeff.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 };
Expand Down
2 changes: 0 additions & 2 deletions trunk/sound/oss/v_midi.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
12 changes: 6 additions & 6 deletions trunk/sound/oss/wavfront.c
Original file line number Diff line number Diff line change
Expand Up @@ -151,11 +151,11 @@ static int (*midi_load_patch) (int devno, int format, const char __user *addr,

/*** Module-accessible parameters ***************************************/

int wf_raw; /* we normally check for "raw state" to firmware
loading. if set, then during driver loading, the
state of the board is ignored, and we reset the
board and load the firmware anyway.
*/
static int wf_raw; /* we normally check for "raw state" to firmware
loading. if set, then during driver loading, the
state of the board is ignored, and we reset the
board and load the firmware anyway.
*/

static int fx_raw = 1; /* if this is zero, we'll leave the FX processor in
whatever state it is when the driver is loaded.
Expand Down Expand Up @@ -2911,7 +2911,7 @@ int __init detect_wffx (void)
return 0;
}

void
static void
wffx_mute (int onoff)

{
Expand Down

0 comments on commit f3d2b07

Please sign in to comment.