mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
d6869352cb
Based on 1 normalized pattern(s): gpl v2 can be found in copying extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 20 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Alexios Zavras <alexios.zavras@intel.com> Reviewed-by: Enrico Weigelt <info@metux.net> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190602204655.283615864@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16 lines
375 B
C
16 lines
375 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Apple Onboard Audio Alsa private helpers
|
|
*
|
|
* Copyright 2006 Johannes Berg <johannes@sipsolutions.net>
|
|
*/
|
|
|
|
#ifndef __SND_AOA_ALSA_H
|
|
#define __SND_AOA_ALSA_H
|
|
#include "../aoa.h"
|
|
|
|
extern int aoa_alsa_init(char *name, struct module *mod, struct device *dev);
|
|
extern void aoa_alsa_cleanup(void);
|
|
|
|
#endif /* __SND_AOA_ALSA_H */
|