On Mon, Feb 14, 2011 at 11:26:46AM +0100, Wolfram Sang wrote: > Shawn, > > > +/* mmc */ > > +static void __init mx28evk_mmc_slot_poweron(int gpio) > > +{ > > + int ret; > > + > > + ret = gpio_request(gpio, "mmc-slot-power"); > > + if (ret) { > > + pr_err("Failed to request gpio mmc-slot-power: %d\n", ret); > > + return; > > + } > > + > > + ret = gpio_direction_output(gpio, 0); > > + if (ret) { > > + pr_err("Failed to drive gpio mmc-slot-power: %d\n", ret); > > + return; > > + } > > +} > > Minor nit: You could use gpio_request_one(), and doing so maybe even get rid of > this function and simply do it the init-function. The advantage would be, that > you can name the two GPIOs independently. > OK. Will take it. Thanks, Shawn -- To unsubscribe from this list: send the line "unsubscribe linux-mmc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html