?? isa_sja1000.h
字號:
#ifndef ISA_SJA1000_H_#define ISA_SJA1000_H_#include "sja1000.h"typedef struct isa_sja1000_chip{ unsigned long io_base; unsigned long io_len; char name[MAX_DEVICE_NAME_LENGTH]; int num; spinlock_t lock; int open; sja1000_isr chip_isr; struct sja1000_admin * chip_isr_data;} ISA_SJA1000_CHIP;#define MAXCHIPS 4 // 4 sja1000 on each boardtypedef struct isa_sja1000_board{ unsigned int io_irq; unsigned int nchips; ISA_SJA1000_CHIP chips[MAXCHIPS];} ISA_SJA1000_BOARD;#endif// vim: ts=4
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -