Fix previous commit: led_func() doesn't exist, it should be fled_cb().

Pointed out by:	bz
This commit is contained in:
Rui Paulo 2010-02-22 14:49:52 +00:00
parent a6b62947cf
commit 4cd0801096

View file

@ -74,7 +74,7 @@ fled_attach(device_t dev)
sc->sc_led = led_create(fled_cb, dev, "front");
led_func(sc, 1); /* Turn on LED */
fled_cb(sc, 1); /* Turn on LED */
return 0;
}