X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=kernel%2Finclude%2Flinux%2Fsmc91x.h;fp=kernel%2Finclude%2Flinux%2Fsmc91x.h;h=e302c447e057a98b0ba47b5bc73acd816b9dc7f7;hb=52f993b8e89487ec9ee15a7fb4979e0f09a45b27;hp=76199b75d5845d21cbcfb67786dfec757e30a446;hpb=c189ccac5702322ed843fe17057035b7222a59b6;p=kvmfornfv.git diff --git a/kernel/include/linux/smc91x.h b/kernel/include/linux/smc91x.h index 76199b75d..e302c447e 100644 --- a/kernel/include/linux/smc91x.h +++ b/kernel/include/linux/smc91x.h @@ -1,6 +1,16 @@ #ifndef __SMC91X_H__ #define __SMC91X_H__ +/* + * These bits define which access sizes a platform can support, rather + * than the maximal access size. So, if your platform can do 16-bit + * and 32-bit accesses to the SMC91x device, but not 8-bit, set both + * SMC91X_USE_16BIT and SMC91X_USE_32BIT. + * + * The SMC91x driver requires at least one of SMC91X_USE_8BIT or + * SMC91X_USE_16BIT to be supported - just setting SMC91X_USE_32BIT is + * an invalid configuration. + */ #define SMC91X_USE_8BIT (1 << 0) #define SMC91X_USE_16BIT (1 << 1) #define SMC91X_USE_32BIT (1 << 2)