flash.h

来自「h内核」· C头文件 代码 · 共 35 行

H
35
字号
/* *  linux/include/asm-arm/mach/flash.h * *  Copyright (C) 2003 Russell King, All Rights Reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */#ifndef ASMARM_MACH_FLASH_H#define ASMARM_MACH_FLASH_Hstruct mtd_partition;/* * map_name:	the map probe function name * width:	width of mapped device * init:	method called at driver/device initialisation * exit:	method called at driver/device removal * set_vpp:	method called to enable or disable VPP * parts:	optional array of mtd_partitions for static partitioning * nr_parts:	number of mtd_partitions for static partitoning */struct flash_platform_data {	const char	*map_name;	unsigned int	width;	int		(*init)(void);	void		(*exit)(void);	void		(*set_vpp)(int on);	struct mtd_partition *parts;	unsigned int	nr_parts;};#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?