You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#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__ */
|
|
|