Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef __SMC911X_H__
0003 #define __SMC911X_H__
0004 
0005 #define SMC911X_USE_16BIT (1 << 0)
0006 #define SMC911X_USE_32BIT (1 << 1)
0007 
0008 struct smc911x_platdata {
0009     unsigned long flags;
0010     unsigned long irq_flags; /* IRQF_... */
0011     int irq_polarity;
0012 };
0013 
0014 #endif /* __SMC911X_H__ */