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 or at your option any later version you should have received a copy of the gnu general public license along with this program if not write to the free software foundation inc 675 mass ave cambridge ma 02139 usa extracted by the scancode license scanner the SPDX license identifier GPL-2.0-or-later has been chosen to replace the boilerplate/reference in 35 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Armijn Hemel <armijn@tjaldur.nl> Reviewed-by: Richard Fontana <rfontana@redhat.com> Reviewed-by: Allison Randal <allison@lohutok.net> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190527070032.655028468@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
27 lines
868 B
C
27 lines
868 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (C) 2009-2010, Lars-Peter Clausen <lars@metafoo.de>
|
|
* JZ4740 platform device definitions
|
|
*/
|
|
|
|
|
|
#ifndef __JZ4740_PLATFORM_H
|
|
#define __JZ4740_PLATFORM_H
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
extern struct platform_device jz4740_udc_device;
|
|
extern struct platform_device jz4740_udc_xceiv_device;
|
|
extern struct platform_device jz4740_mmc_device;
|
|
extern struct platform_device jz4740_i2c_device;
|
|
extern struct platform_device jz4740_nand_device;
|
|
extern struct platform_device jz4740_framebuffer_device;
|
|
extern struct platform_device jz4740_i2s_device;
|
|
extern struct platform_device jz4740_pcm_device;
|
|
extern struct platform_device jz4740_codec_device;
|
|
extern struct platform_device jz4740_adc_device;
|
|
extern struct platform_device jz4740_pwm_device;
|
|
extern struct platform_device jz4740_dma_device;
|
|
|
|
#endif
|