core.h (e9e4e44309f866b115d08ab4a54834008c50a8a4) | core.h (e086e3035e0691b362755d1b5e24df631eee335a) |
---|---|
1#ifndef __SOUND_CORE_H 2#define __SOUND_CORE_H 3 4/* 5 * Main header file for the ALSA driver 6 * Copyright (c) 1994-2001 by Jaroslav Kysela <perex@perex.cz> 7 * 8 * --- 264 unchanged lines hidden (view full) --- 273#define snd_card_set_dev(card, devptr) ((card)->dev = (devptr)) 274 275/* device.c */ 276 277int snd_device_new(struct snd_card *card, enum snd_device_type type, 278 void *device_data, struct snd_device_ops *ops); 279int snd_device_register(struct snd_card *card, void *device_data); 280int snd_device_register_all(struct snd_card *card); | 1#ifndef __SOUND_CORE_H 2#define __SOUND_CORE_H 3 4/* 5 * Main header file for the ALSA driver 6 * Copyright (c) 1994-2001 by Jaroslav Kysela <perex@perex.cz> 7 * 8 * --- 264 unchanged lines hidden (view full) --- 273#define snd_card_set_dev(card, devptr) ((card)->dev = (devptr)) 274 275/* device.c */ 276 277int snd_device_new(struct snd_card *card, enum snd_device_type type, 278 void *device_data, struct snd_device_ops *ops); 279int snd_device_register(struct snd_card *card, void *device_data); 280int snd_device_register_all(struct snd_card *card); |
281int snd_device_disconnect_all(struct snd_card *card); | 281void snd_device_disconnect(struct snd_card *card, void *device_data); 282void snd_device_disconnect_all(struct snd_card *card); |
282void snd_device_free(struct snd_card *card, void *device_data); 283void snd_device_free_all(struct snd_card *card); 284 285/* isadma.c */ 286 287#ifdef CONFIG_ISA_DMA_API 288#define DMA_MODE_NO_ENABLE 0x0100 289 --- 173 unchanged lines hidden --- | 283void snd_device_free(struct snd_card *card, void *device_data); 284void snd_device_free_all(struct snd_card *card); 285 286/* isadma.c */ 287 288#ifdef CONFIG_ISA_DMA_API 289#define DMA_MODE_NO_ENABLE 0x0100 290 --- 173 unchanged lines hidden --- |