mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
5765e78e84
Based on 1 normalized pattern(s): this source file is released under gpl v2 license no other versions see the copying file included in the main directory of this source distribution for the license terms and conditions extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 28 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Armijn Hemel <armijn@tjaldur.nl> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190531081035.780831265@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
23 lines
438 B
C
23 lines
438 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/**
|
|
* Copyright (C) 2008, Creative Technology Ltd. All Rights Reserved.
|
|
*
|
|
* @File cthw20k1.h
|
|
*
|
|
* @Brief
|
|
* This file contains the definition of hardware access methord.
|
|
*
|
|
* @Author Liu Chun
|
|
* @Date May 13 2008
|
|
*/
|
|
|
|
#ifndef CTHW20K1_H
|
|
#define CTHW20K1_H
|
|
|
|
#include "cthardware.h"
|
|
|
|
int create_20k1_hw_obj(struct hw **rhw);
|
|
int destroy_20k1_hw_obj(struct hw *hw);
|
|
|
|
#endif /* CTHW20K1_H */
|