Revision 0a66a59649f8d3f09a0ca77f1a232ec77adeeda2 authored by Linus Torvalds on 26 November 2010, 22:14:00 UTC, committed by Linus Torvalds on 26 November 2010, 22:14:00 UTC
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2:
  nilfs2: fix typo in comment of nilfs_dat_move function
  nilfs2: nilfs_iget_for_gc() returns ERR_PTR
2 parent s 698fd6a + f6c26ec
Raw File
l3.h
#ifndef _L3_H_
#define _L3_H_ 1

struct l3_pins {
	void (*setdat)(int);
	void (*setclk)(int);
	void (*setmode)(int);
	int data_hold;
	int data_setup;
	int clock_high;
	int mode_hold;
	int mode;
	int mode_setup;
};

int l3_write(struct l3_pins *adap, u8 addr, u8 *data, int len);

#endif
back to top