mirror of https://gitee.com/openkylin/linux.git
staging: board: use appropriate macro to initialize struct
Make code more readable by using macros defined for initializing struct resource Signed-off-by: Aurabindo Jayamohanan <mail@aurabindo.in> Link: https://lore.kernel.org/r/20190919113945.13700-1-mail@aurabindo.in Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
fe11afc326
commit
1c0c5e9b23
|
@ -50,16 +50,8 @@ static struct sh_mobile_lcdc_info lcdc0_info = {
|
|||
};
|
||||
|
||||
static struct resource lcdc0_resources[] = {
|
||||
[0] = {
|
||||
.name = "LCD0",
|
||||
.start = 0xfe940000,
|
||||
.end = 0xfe943fff,
|
||||
.flags = IORESOURCE_MEM,
|
||||
},
|
||||
[1] = {
|
||||
.start = 177 + 32,
|
||||
.flags = IORESOURCE_IRQ,
|
||||
},
|
||||
DEFINE_RES_MEM_NAMED(0xfe940000, 0x4000, "LCD0"),
|
||||
DEFINE_RES_IRQ(177 + 32),
|
||||
};
|
||||
|
||||
static struct platform_device lcdc0_device = {
|
||||
|
|
Loading…
Reference in New Issue