@@ -92,11 +92,6 @@ static const char version[] =
#include "smc91x.h"
-#if defined(CONFIG_ASSABET_NEPONSET)
-#include <mach/assabet.h>
-#include <mach/neponset.h>
-#endif
-
#ifndef SMC_NOWAIT
# define SMC_NOWAIT 0
#endif
@@ -2384,10 +2379,6 @@ static int smc_drv_probe(struct platform_device *pdev)
ret = smc_request_attrib(pdev, ndev);
if (ret)
goto out_release_io;
-#if defined(CONFIG_ASSABET_NEPONSET)
- if (machine_is_assabet() && machine_has_neponset())
- neponset_ncr_set(NCR_ENET_OSC_EN);
-#endif
if (lp->xtal) {
ret = clk_prepare_enable(lp->xtal);
if (ret)
Remove the neponset specific oscillator hack from the smc91x driver, relying instead on the gpio controls provided. Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk> --- drivers/net/ethernet/smsc/smc91x.c | 9 --------- 1 file changed, 9 deletions(-)