bigfish wikibigfishwiki.blog.chinaunix.net
BENNYSNAKE
全部博文(401)
git(8)
2015年(16)
2014年(4)
2013年(12)
2012年(82)
2011年(98)
2010年(112)
2009年(77)
dingzhao
jianglia
真心求学
星际海盗
hanwu199
zhbnx
创意高飞
bottles
diao8200
hejia299
fengyq
fx_sword
pengsl20
miniboy
uu202108
zj_hunds
polejo
git__hub
分类: LINUX
2010-08-21 13:52:33
MACHINE_START(SMDK2410, "SMDK2410") /* @TODO: request a new identifier and switch to SMDK2410 */ /* Maintainer: Jonas Dietsche */ .phys_io = S3C2410_PA_UART, .io_pg_offst = (((u32)S3C24XX_VA_UART) >> 18) & 0xfffc, .boot_params = S3C2410_SDRAM_PA + 0x100, .map_io = smdk2410_map_io, .init_irq = s3c24xx_init_irq, .init_machine = smdk_machine_init, .timer = &s3c24xx_timer,MACHINE_END
#define MACHINE_START(_type,_name) \static const struct machine_desc __mach_desc_##_type \ __attribute_used__ \ __attribute__((__section__(".arch.info.init"))) = { \ .nr = MACH_TYPE_##_type, \ .name = _name,#define MACHINE_END \};
static const struct machine_desc __mach_desc_SMDK2410 __attribute_used__ __attribute__((__section__(".arch.info.init"))) = { .nr = MACH_TYPE_SMDK2410, /* architecture number */ .name = "SMDK2410", /* architecture name */ /* Maintainer: Jonas Dietsche */ .phys_io = S3C2410_PA_UART, /* start of physical io */ .io_pg_offst = (((u32)S3C24XX_VA_UART) >> 18) & 0xfffc, .boot_params = S3C2410_SDRAM_PA + 0x100, /* tagged list */ .map_io = smdk2410_map_io, /* IO mapping function */ .init_irq = s3c24xx_init_irq, .init_machine = smdk_machine_init, .timer = &s3c24xx_timer,}
上一篇:LCD调色板显示
下一篇:ubuntu 10.04 关闭触摸板
登录 注册