-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ALSA: snd-usb-caiaq: rename 'dev' to 'cdev'
This is needed in order to make the device namespace cleaner, and will help when moving this driver over to dev_*() logging. Signed-off-by: Daniel Mack <zonque@gmail.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
- Loading branch information
Daniel Mack
authored and
Takashi Iwai
committed
Mar 4, 2013
1 parent
6dbe51c
commit 1c8470c
Showing
10 changed files
with
543 additions
and
542 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#ifndef CAIAQ_AUDIO_H | ||
#define CAIAQ_AUDIO_H | ||
|
||
int snd_usb_caiaq_audio_init(struct snd_usb_caiaqdev *dev); | ||
void snd_usb_caiaq_audio_free(struct snd_usb_caiaqdev *dev); | ||
int snd_usb_caiaq_audio_init(struct snd_usb_caiaqdev *cdev); | ||
void snd_usb_caiaq_audio_free(struct snd_usb_caiaqdev *cdev); | ||
|
||
#endif /* CAIAQ_AUDIO_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#ifndef CAIAQ_CONTROL_H | ||
#define CAIAQ_CONTROL_H | ||
|
||
int snd_usb_caiaq_control_init(struct snd_usb_caiaqdev *dev); | ||
int snd_usb_caiaq_control_init(struct snd_usb_caiaqdev *cdev); | ||
|
||
#endif /* CAIAQ_CONTROL_H */ |
Oops, something went wrong.