mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 00:21:59 +00:00
fda8d26e61
Based on 1 normalized pattern(s): licensed under the gpl 2 extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 135 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Richard Fontana <rfontana@redhat.com> Reviewed-by: Alexios Zavras <alexios.zavras@intel.com> Reviewed-by: Steve Winslow <swinslow@gmail.com> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190528170026.071193225@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20 lines
374 B
C
20 lines
374 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* SSM2518 amplifier audio driver
|
|
*
|
|
* Copyright 2013 Analog Devices Inc.
|
|
* Author: Lars-Peter Clausen <lars@metafoo.de>
|
|
*/
|
|
|
|
#ifndef __SND_SOC_CODECS_SSM2518_H__
|
|
#define __SND_SOC_CODECS_SSM2518_H__
|
|
|
|
#define SSM2518_SYSCLK 0
|
|
|
|
enum ssm2518_sysclk_src {
|
|
SSM2518_SYSCLK_SRC_MCLK = 0,
|
|
SSM2518_SYSCLK_SRC_BCLK = 1,
|
|
};
|
|
|
|
#endif
|