• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C++ s3c24xx_init_clocks函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C++中s3c24xx_init_clocks函数的典型用法代码示例。如果您正苦于以下问题:C++ s3c24xx_init_clocks函数的具体用法?C++ s3c24xx_init_clocks怎么用?C++ s3c24xx_init_clocks使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了s3c24xx_init_clocks函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。

示例1: real6410_map_io

static void __init real6410_map_io(void)
{
	s3c64xx_init_io(NULL, 0);
	s3c24xx_init_clocks(12000000);
	s3c24xx_init_uarts(real6410_uartcfgs, ARRAY_SIZE(real6410_uartcfgs));
}
开发者ID:Unhelpful,项目名称:linux-galaxy,代码行数:6,代码来源:mach-real6410.c


示例2: rx3715_map_io

static void __init rx3715_map_io(void)
{
	s3c24xx_init_io(rx3715_iodesc, ARRAY_SIZE(rx3715_iodesc));
	s3c24xx_init_clocks(16934000);
	s3c24xx_init_uarts(rx3715_uartcfgs, ARRAY_SIZE(rx3715_uartcfgs));
}
开发者ID:anewkirk,项目名称:AJK,代码行数:6,代码来源:mach-rx3715.c


示例3: smdk6410_map_io

static void __init smdk6410_map_io(void)
{
    s3c24xx_init_io(smdk6410_iodesc, ARRAY_SIZE(smdk6410_iodesc));
    s3c24xx_init_clocks(0);
    s3c24xx_init_uarts(smdk6410_uartcfgs, ARRAY_SIZE(smdk6410_uartcfgs));
}
开发者ID:pook66,项目名称:samsung-s3c6410-android.1.0,代码行数:6,代码来源:mach-smdk6410.c


示例4: hmt_map_io

static void __init hmt_map_io(void)
{
	s3c64xx_init_io(hmt_iodesc, ARRAY_SIZE(hmt_iodesc));
	s3c24xx_init_clocks(12000000);
	s3c24xx_init_uarts(hmt_uartcfgs, ARRAY_SIZE(hmt_uartcfgs));
}
开发者ID:47903975,项目名称:cortexm_uclinux,代码行数:6,代码来源:mach-hmt.c


示例5: smdkv310_map_io

static void __init smdkv310_map_io(void)
{
	s5p_init_io(NULL, 0, S5P_VA_CHIPID);
	s3c24xx_init_clocks(24000000);
	s3c24xx_init_uarts(smdkv310_uartcfgs, ARRAY_SIZE(smdkv310_uartcfgs));
}
开发者ID:p500-ics-cm9,项目名称:linaro-android-3.1,代码行数:6,代码来源:mach-smdkv310.c


示例6: universal_map_io

static void __init universal_map_io(void)
{
	s5p_init_io(NULL, 0, S5P_VA_CHIPID);
	s3c24xx_init_clocks(24000000);
	s3c24xx_init_uarts(universal_uartcfgs, ARRAY_SIZE(universal_uartcfgs));
}
开发者ID:007kumarraja,项目名称:rockchip-rk3188-mk908,代码行数:6,代码来源:mach-universal_c210.c


示例7: jive_map_io

static void __init jive_map_io(void)
{
	s3c24xx_init_io(jive_iodesc, ARRAY_SIZE(jive_iodesc));
	s3c24xx_init_clocks(12000000);
	s3c24xx_init_uarts(jive_uartcfgs, ARRAY_SIZE(jive_uartcfgs));
}
开发者ID:Medvedroid,项目名称:OT_903D-kernel-2.6.35.7,代码行数:6,代码来源:mach-jive.c


示例8: smdkv310_map_io

static void __init smdkv310_map_io(void)
{
	exynos_init_io(NULL, 0);
	s3c24xx_init_clocks(clk_xusbxti.rate);
	s3c24xx_init_uarts(smdkv310_uartcfgs, ARRAY_SIZE(smdkv310_uartcfgs));
}
开发者ID:Werdo,项目名称:Clickarm_Kernel_3.8,代码行数:6,代码来源:mach-smdkv310.c


示例9: exynos5250_dt_map_io

static void __init exynos5250_dt_map_io(void)
{
	exynos_init_io(NULL, 0);
	s3c24xx_init_clocks(24000000);
}
开发者ID:7L,项目名称:pi_plus,代码行数:5,代码来源:mach-exynos5-dt.c


示例10: smdkc100_map_io

static void __init smdkc100_map_io(void)
{
	s5pc100_init_io(NULL, 0);
	s3c24xx_init_clocks(12000000);
	s3c24xx_init_uarts(smdkc100_uartcfgs, ARRAY_SIZE(smdkc100_uartcfgs));
}
开发者ID:Blackburn29,项目名称:PsycoKernel,代码行数:6,代码来源:mach-smdkc100.c


示例11: mini2440_map_io

static void __init mini2440_map_io(void)
{
	s3c24xx_init_io(mini2440_iodesc, ARRAY_SIZE(mini2440_iodesc));
	s3c24xx_init_clocks(12000000);
	s3c24xx_init_uarts(mini2440_uartcfgs, ARRAY_SIZE(mini2440_uartcfgs));
}
开发者ID:IoveSunny,项目名称:DreamBox,代码行数:6,代码来源:mach-mini2440.c


示例12: smdk6440_map_io

static void __init smdk6440_map_io(void)
{
	s5p_init_io(NULL, 0, S5P_SYS_ID);
	s3c24xx_init_clocks(12000000);
	s3c24xx_init_uarts(smdk6440_uartcfgs, ARRAY_SIZE(smdk6440_uartcfgs));
}
开发者ID:123456798wil,项目名称:kernel_dell_streak7,代码行数:6,代码来源:mach-smdk6440.c


示例13: vstms_map_io

static void __init vstms_map_io(void)
{
	s3c24xx_init_io(vstms_iodesc, ARRAY_SIZE(vstms_iodesc));
	s3c24xx_init_clocks(12000000);
	s3c24xx_init_uarts(vstms_uartcfgs, ARRAY_SIZE(vstms_uartcfgs));
}
开发者ID:andi34,项目名称:Dhollmen_Kernel,代码行数:6,代码来源:mach-vstms.c


示例14: tct_hammer_map_io

static void __init tct_hammer_map_io(void)
{
    s3c24xx_init_io(tct_hammer_iodesc, ARRAY_SIZE(tct_hammer_iodesc));
    s3c24xx_init_clocks(0);
    s3c24xx_init_uarts(tct_hammer_uartcfgs, ARRAY_SIZE(tct_hammer_uartcfgs));
}
开发者ID:274914765,项目名称:C,代码行数:6,代码来源:mach-tct_hammer.c


示例15: otom11_map_io

static void __init otom11_map_io(void)
{
    s3c24xx_init_io(otom11_iodesc, ARRAY_SIZE(otom11_iodesc));
    s3c24xx_init_clocks(0);
    s3c24xx_init_uarts(otom11_uartcfgs, ARRAY_SIZE(otom11_uartcfgs));
}
开发者ID:274914765,项目名称:C,代码行数:6,代码来源:mach-otom.c


示例16: origen_map_io

static void __init origen_map_io(void)
{
	exynos_init_io(NULL, 0);
	s3c24xx_init_clocks(24000000);
	s3c24xx_init_uarts(origen_uartcfgs, ARRAY_SIZE(origen_uartcfgs));
}
开发者ID:mskim77,项目名称:hardkernel-linux,代码行数:6,代码来源:mach-origen.c


示例17: aquila_map_io

static void __init aquila_map_io(void)
{
	s5p_init_io(NULL, 0, S5P_VA_CHIPID);
	s3c24xx_init_clocks(24000000);
	s3c24xx_init_uarts(aquila_uartcfgs, ARRAY_SIZE(aquila_uartcfgs));
}
开发者ID:alanorth,项目名称:samsung-kernel-p6200,代码行数:6,代码来源:mach-aquila.c


示例18: at2440evb_map_io

static void __init at2440evb_map_io(void)
{
	s3c24xx_init_io(at2440evb_iodesc, ARRAY_SIZE(at2440evb_iodesc));
	s3c24xx_init_clocks(16934400);
	s3c24xx_init_uarts(at2440evb_uartcfgs, ARRAY_SIZE(at2440evb_uartcfgs));
}
开发者ID:71eh,项目名称:open80211s,代码行数:6,代码来源:mach-at2440evb.c


示例19: qt2410_map_io

static void __init qt2410_map_io(void)
{
	s3c24xx_init_io(qt2410_iodesc, ARRAY_SIZE(qt2410_iodesc));
	s3c24xx_init_clocks(12*1000*1000);
	s3c24xx_init_uarts(smdk2410_uartcfgs, ARRAY_SIZE(smdk2410_uartcfgs));
}
开发者ID:AllenWeb,项目名称:linux,代码行数:6,代码来源:mach-qt2410.c


示例20: smdk2413_map_io

static void __init smdk2413_map_io(void)
{
	s3c24xx_init_io(smdk2413_iodesc, ARRAY_SIZE(smdk2413_iodesc));
	s3c24xx_init_clocks(12000000);
	s3c24xx_init_uarts(smdk2413_uartcfgs, ARRAY_SIZE(smdk2413_uartcfgs));
}
开发者ID:Blackburn29,项目名称:PsycoKernel,代码行数:6,代码来源:mach-smdk2413.c



注:本文中的s3c24xx_init_clocks函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C++ s3c24xx_init_uartdevs函数代码示例发布时间:2022-05-30
下一篇:
C++ s3c2410_gpio_setpin函数代码示例发布时间:2022-05-30
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap