Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 //
0003 //  originally from arch/arm/plat-s3c24xx/devs.c
0004 //
0005 // Copyright (c) 2004 Simtec Electronics
0006 //  Ben Dooks <ben@simtec.co.uk>
0007 //
0008 // Base S3C24XX platform device definitions
0009 
0010 #include <linux/kernel.h>
0011 #include <linux/platform_device.h>
0012 
0013 #include "devs.h"
0014 
0015 /* uart devices */
0016 
0017 static struct platform_device s3c24xx_uart_device0 = {
0018     .id     = 0,
0019 };
0020 
0021 static struct platform_device s3c24xx_uart_device1 = {
0022     .id     = 1,
0023 };
0024 
0025 static struct platform_device s3c24xx_uart_device2 = {
0026     .id     = 2,
0027 };
0028 
0029 static struct platform_device s3c24xx_uart_device3 = {
0030     .id     = 3,
0031 };
0032 
0033 struct platform_device *s3c24xx_uart_src[4] = {
0034     &s3c24xx_uart_device0,
0035     &s3c24xx_uart_device1,
0036     &s3c24xx_uart_device2,
0037     &s3c24xx_uart_device3,
0038 };
0039 
0040 struct platform_device *s3c24xx_uart_devs[4] = {
0041 };