Merge remote-tracking branch 'moduleh/module.h-split'
[linux-2.6/next.git] / arch / arm / plat-samsung / dev-ide.c
blob5407574556bf1e3fe210600843994f1b724e8c00
1 /* linux/arch/arm/plat-samsung/dev-ide.c
3 * Copyright (c) 2010 Samsung Electronics Co., Ltd.
4 * http://www.samsung.com
6 * Samsung CF-ATA device definition.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/kernel.h>
14 #include <linux/interrupt.h>
15 #include <linux/platform_device.h>
17 #include <asm/sizes.h>
19 #include <mach/map.h>
20 #include <plat/ata.h>
21 #include <plat/devs.h>
23 static struct resource s3c_cfcon_resource[] = {
24 [0] = {
25 .start = SAMSUNG_PA_CFCON,
26 .end = SAMSUNG_PA_CFCON + SZ_16K - 1,
27 .flags = IORESOURCE_MEM,
29 [1] = {
30 .start = IRQ_CFCON,
31 .end = IRQ_CFCON,
32 .flags = IORESOURCE_IRQ,
36 struct platform_device s3c_device_cfcon = {
37 .id = 0,
38 .num_resources = ARRAY_SIZE(s3c_cfcon_resource),
39 .resource = s3c_cfcon_resource,
42 void s3c_ide_set_platdata(struct s3c_ide_platdata *pdata)
44 s3c_set_platdata(pdata, sizeof(struct s3c_ide_platdata),
45 &s3c_device_cfcon);