swh:1:snp:c3bf2749e3476071fa748f67b0ffa2fdc5fe49d9
Raw File
Tip revision: 543cf4cb3fe6f6cae3651ba918b9c56200b257d0 authored by Linus Torvalds on 25 June 2008, 01:58:20 UTC
Linux 2.6.26-rc8
Tip revision: 543cf4c
smc91x.h
#ifndef __SMC91X_H__
#define __SMC91X_H__

#define SMC91X_USE_8BIT (1 << 0)
#define SMC91X_USE_16BIT (1 << 1)
#define SMC91X_USE_32BIT (1 << 2)

struct smc91x_platdata {
	unsigned long flags;
	unsigned long irq_flags; /* IRQF_... */
};

#endif /* __SMC91X_H__ */
back to top