fix warnings
This commit is contained in:
parent
add9046a97
commit
2078d1f36c
@ -155,7 +155,6 @@ struct {
|
||||
|
||||
/* channel interface */
|
||||
static void *ds1pchan_init(void *devinfo, snd_dbuf *b, pcm_channel *c, int dir);
|
||||
static int ds1pchan_setdir(void *data, int dir);
|
||||
static int ds1pchan_setformat(void *data, u_int32_t format);
|
||||
static int ds1pchan_setspeed(void *data, u_int32_t speed);
|
||||
static int ds1pchan_setblocksize(void *data, u_int32_t blocksize);
|
||||
@ -164,7 +163,6 @@ static int ds1pchan_getptr(void *data);
|
||||
static pcmchan_caps *ds1pchan_getcaps(void *data);
|
||||
|
||||
static void *ds1rchan_init(void *devinfo, snd_dbuf *b, pcm_channel *c, int dir);
|
||||
static int ds1rchan_setdir(void *data, int dir);
|
||||
static int ds1rchan_setformat(void *data, u_int32_t format);
|
||||
static int ds1rchan_setspeed(void *data, u_int32_t speed);
|
||||
static int ds1rchan_setblocksize(void *data, u_int32_t blocksize);
|
||||
|
@ -79,7 +79,6 @@ struct sc_info {
|
||||
/* channel interface */
|
||||
static void *nmchan_init(void *devinfo, snd_dbuf *b, pcm_channel *c, int dir);
|
||||
static int nmchan_free(void *data);
|
||||
static int nmchan_setdir(void *data, int dir);
|
||||
static int nmchan_setformat(void *data, u_int32_t format);
|
||||
static int nmchan_setspeed(void *data, u_int32_t speed);
|
||||
static int nmchan_setblocksize(void *data, u_int32_t blocksize);
|
||||
@ -705,6 +704,7 @@ static device_method_t nm_methods[] = {
|
||||
/* Device interface */
|
||||
DEVMETHOD(device_probe, nm_pci_probe),
|
||||
DEVMETHOD(device_attach, nm_pci_attach),
|
||||
DEVMETHOD(device_detach, nm_pci_detach),
|
||||
DEVMETHOD(device_resume, nm_pci_resume),
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
@ -44,7 +44,6 @@
|
||||
|
||||
/* channel interface for ESS */
|
||||
static void *esschan_init(void *devinfo, snd_dbuf *b, pcm_channel *c, int dir);
|
||||
static int esschan_setdir(void *data, int dir);
|
||||
static int esschan_setformat(void *data, u_int32_t format);
|
||||
static int esschan_setspeed(void *data, u_int32_t speed);
|
||||
static int esschan_setblocksize(void *data, u_int32_t blocksize);
|
||||
@ -995,7 +994,7 @@ static int
|
||||
ess_detach(device_t dev)
|
||||
{
|
||||
int r;
|
||||
struct sc_info *sc;
|
||||
struct ess_info *sc;
|
||||
|
||||
r = pcm_unregister(dev);
|
||||
if (r)
|
||||
|
@ -611,7 +611,7 @@ tr_pci_attach(device_t dev)
|
||||
{
|
||||
u_int32_t data;
|
||||
struct tr_info *tr;
|
||||
struct ac97_info *codec;
|
||||
struct ac97_info *codec = 0;
|
||||
int i;
|
||||
int mapped;
|
||||
char status[SND_STATUSLEN];
|
||||
|
Loading…
Reference in New Issue
Block a user