?? leds.c
字號:
/* * linux/arch/arm/mach-pxa/leds.c * * xscale LEDs dispatcher * * Copyright (C) 2001 Nicolas Pitre * * Copyright (c) 2001 Jeff Sutherland, Accelent Systems Inc. */#include <linux/compiler.h>#include <linux/init.h>#include <asm/leds.h>#include <asm/mach-types.h>#include "leds.h"static int __initpxa_leds_init(void){ if (machine_is_lubbock()) leds_event = lubbock_leds_event; if (machine_is_mainstone()) leds_event = mainstone_leds_event; if (machine_is_pxa_idp()) leds_event = idp_leds_event; leds_event(led_start); return 0;}core_initcall(pxa_leds_init);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -