swh:1:snp:49cd9498d6cccc5e78252c27dcb645bcf7bf0c91
Raw File
Tip revision: 3c0eee3fe6a3a1c745379547c7e7c904aa64f6d5 authored by Linus Torvalds on 05 January 2011, 00:50:19 UTC
Linux 2.6.37
Tip revision: 3c0eee3
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