mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-05-08 08:13:55 +00:00
Based on 1 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of the gnu general public license as published by the free software foundation either version 2 of the license this program is distributed in the hope that it will be useful but without any warranty without even the implied warranty of merchantability or fitness for a particular purpose see the gnu general public license for more details you should have received a copy of the gnu general public license along with this program if not see http www gnu org licenses extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 15 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> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190530000437.237481593@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
30 lines
610 B
C
30 lines
610 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* (C) 2004 Margit Schubert-While <margitsw@t-online.de>
|
|
*/
|
|
|
|
/*
|
|
* Compatibility header file to aid support of different kernel versions
|
|
*/
|
|
|
|
#ifdef PRISM54_COMPAT24
|
|
#include "prismcompat24.h"
|
|
#else /* PRISM54_COMPAT24 */
|
|
|
|
#ifndef _PRISM_COMPAT_H
|
|
#define _PRISM_COMPAT_H
|
|
|
|
#include <linux/device.h>
|
|
#include <linux/firmware.h>
|
|
#include <linux/moduleparam.h>
|
|
#include <linux/workqueue.h>
|
|
#include <linux/compiler.h>
|
|
|
|
#ifndef __iomem
|
|
#define __iomem
|
|
#endif
|
|
|
|
#define PRISM_FW_PDEV &priv->pdev->dev
|
|
|
|
#endif /* _PRISM_COMPAT_H */
|
|
#endif /* PRISM54_COMPAT24 */
|