diff options
Diffstat (limited to 'examples/smc91111_eeprom.c')
| -rw-r--r-- | examples/smc91111_eeprom.c | 12 | 
1 files changed, 12 insertions, 0 deletions
| diff --git a/examples/smc91111_eeprom.c b/examples/smc91111_eeprom.c index b8a3594e9..1e1129a33 100644 --- a/examples/smc91111_eeprom.c +++ b/examples/smc91111_eeprom.c @@ -31,6 +31,8 @@  #include <exports.h>  #include "../drivers/net/smc91111.h" +#ifdef CONFIG_DRIVER_SMC91111 +  #define SMC_BASE_ADDRESS CONFIG_SMC91111_BASE  #define EEPROM		0x1;  #define MAC		0x2; @@ -387,3 +389,13 @@ void dump_reg (void)  		printf ("\n");  	}  } + +#else + +int smc91111_eeprom (int argc, char *argv[]) +{ +	printf("Not supported for this board\n"); +	return 1; +} + +#endif |