ALSA: aoa: clean up file names

This cleans up the apple onboard audio driver filenames.

Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
Johannes Berg
2008-10-23 15:47:56 +02:00
committed by Takashi Iwai
vanhempi 72474be62d
commit 888dcb7cb2
22 muutettua tiedostoa jossa 30 lisäystä ja 24 poistoa

Näytä tiedosto

@@ -1,5 +1,5 @@
obj-$(CONFIG_SND_AOA) += snd-aoa.o
snd-aoa-objs := snd-aoa-core.o \
snd-aoa-alsa.o \
snd-aoa-gpio-pmf.o \
snd-aoa-gpio-feature.o
snd-aoa-objs := core.o \
alsa.o \
gpio-pmf.o \
gpio-feature.o

Näytä tiedosto

@@ -6,7 +6,7 @@
* GPL v2, can be found in COPYING.
*/
#include <linux/module.h>
#include "snd-aoa-alsa.h"
#include "alsa.h"
static int index = -1;
module_param(index, int, 0444);
@@ -64,7 +64,7 @@ int aoa_snd_device_new(snd_device_type_t type,
{
struct snd_card *card = aoa_get_card();
int err;
if (!card) return -ENOMEM;
err = snd_device_new(card, type, device_data, ops);

Näytä tiedosto

@@ -10,7 +10,7 @@
#include <linux/module.h>
#include <linux/list.h>
#include "../aoa.h"
#include "snd-aoa-alsa.h"
#include "alsa.h"
MODULE_DESCRIPTION("Apple Onboard Audio Sound Driver");
MODULE_AUTHOR("Johannes Berg <johannes@sipsolutions.net>");

Näytä tiedosto

@@ -5,7 +5,7 @@
*
* GPL v2, can be found in COPYING.
*
* This file contains the GPIO control routines for
* This file contains the GPIO control routines for
* direct (through feature calls) access to the GPIO
* registers.
*/