*/
static void ads7846_dev_init(void)
{
- if (omap_request_gpio(ts_gpio) < 0) {
+ if (gpio_request(ts_gpio, "ADS7846 pendown") < 0) {
printk(KERN_ERR "can't get ads746 pen down GPIO\n");
return;
}
sdp3430_smc91x_resources[1].start = gpio_to_irq(eth_gpio);
- if (omap_request_gpio(eth_gpio) < 0) {
+ if (gpio_request(eth_gpio, "SMC91x irq") < 0) {
printk(KERN_ERR "Failed to request GPIO%d for smc91x IRQ\n",
eth_gpio);
return;
#include <linux/platform_device.h>
#include <linux/delay.h>
#include <linux/videodev2.h>
+#include <linux/gpio.h>
#include <linux/i2c/menelaus.h>
#include <media/v4l2-int-device.h>
#include <asm/mach-types.h>
-#include <mach/gpio.h>
#include <mach/board.h>
#include <../drivers/cbus/retu.h>
{
int r;
- r = omap_request_gpio(N800_CAM_SENSOR_RESET_GPIO);
+ r = gpio_request(N800_CAM_SENSOR_RESET_GPIO, "TCM825x reset");
if (r < 0) {
printk(KERN_WARNING "%s: failed to request gpio\n",
__func__);
#include <linux/delay.h>
#include <linux/platform_device.h>
+#include <linux/gpio.h>
#include <linux/i2c/menelaus.h>
#include <asm/mach-types.h>
#include <mach/mmc.h>
-#include <mach/gpio.h>
#if defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE)
{
menelaus_unregister_mmc_callback();
- omap_free_gpio(slot_switch_gpio);
+ gpio_free(slot_switch_gpio);
if (machine_is_nokia_n810()) {
- omap_free_gpio(n810_slot2_pw_vddf);
- omap_free_gpio(n810_slot2_pw_vdd);
+ gpio_free(n810_slot2_pw_vddf);
+ gpio_free(n810_slot2_pw_vdd);
}
}
mmc1_data.slots[1].ban_openended = 1;
}
- if (omap_request_gpio(slot_switch_gpio) < 0)
+ if (gpio_request(slot_switch_gpio, "MMC slot switch") < 0)
BUG();
gpio_direction_output(slot_switch_gpio, 0);
if (machine_is_nokia_n810()) {
- if (omap_request_gpio(n810_slot2_pw_vddf) < 0)
+ if (gpio_request(n810_slot2_pw_vddf, "MMC slot 2 Vddf") < 0)
BUG();
gpio_direction_output(n810_slot2_pw_vddf, 0);
- if (omap_request_gpio(n810_slot2_pw_vdd) < 0)
+ if (gpio_request(n810_slot2_pw_vdd, "MMC slot 2 Vdd") < 0)
BUG();
gpio_direction_output(n810_slot2_pw_vdd, 0);
}
#include <linux/platform_device.h>
#include <linux/clk.h>
#include <linux/err.h>
+#include <linux/gpio.h>
#include <linux/usb/musb.h>
#include <mach/gpmc.h>
-#include <mach/gpio.h>
#include <mach/pm.h>
#define TUSB_ASYNC_CS 1
static char announce[] __initdata = KERN_INFO "TUSB 6010\n";
/* PM companion chip power control pin */
- ret = omap_request_gpio(GPIO_TUSB_ENABLE);
+ ret = gpio_request(GPIO_TUSB_ENABLE, "TUSB6010 enable");
if (ret != 0) {
printk(KERN_ERR "Could not get TUSB power GPIO%i\n",
GPIO_TUSB_ENABLE);
return;
err:
- omap_free_gpio(GPIO_TUSB_ENABLE);
+ gpio_free(GPIO_TUSB_ENABLE);
}
omap_gpio_init();
#ifdef CONFIG_OMAP_STI
- if (omap_request_gpio(N800_STI_GPIO) < 0) {
+ if (gpio_request(N800_STI_GPIO, "STI") < 0) {
printk(KERN_ERR "Failed to request GPIO %d for STI\n",
N800_STI_GPIO);
return;
{
int r;
- r = omap_request_gpio(N800_BLIZZARD_POWERDOWN_GPIO);
+ r = gpio_request(N800_BLIZZARD_POWERDOWN_GPIO, "Blizzard pd");
if (r < 0)
return;
gpio_direction_output(N800_BLIZZARD_POWERDOWN_GPIO, 1);
pr_debug("Enabling tea5761 at GPIO %d\n",
enable_gpio);
- if (omap_request_gpio(enable_gpio) < 0) {
+ if (gpio_request(enable_gpio, "TEA5761 enable") < 0) {
printk(KERN_ERR "Can't request GPIO %d\n",
enable_gpio);
return -ENODEV;
else
rate = clk_get_rate(l3ck);
- if (omap_request_gpio(OMAP3EVM_ETHR_GPIO_IRQ) < 0) {
+ if (gpio_request(OMAP3EVM_ETHR_GPIO_IRQ, "SMC911x irq") < 0) {
printk(KERN_ERR "Failed to request GPIO%d for smc911x IRQ\n",
OMAP3EVM_ETHR_GPIO_IRQ);
return;
static void ads7846_dev_init(void)
{
- if (omap_request_gpio(OMAP3_EVM_TS_GPIO) < 0)
+ if (gpio_request(OMAP3_EVM_TS_GPIO, "ADS7846 pendown") < 0)
printk(KERN_ERR "can't get ads7846 pen down GPIO\n");
gpio_direction_input(OMAP3_EVM_TS_GPIO);
#include <linux/platform_device.h>
#include <linux/timer.h>
#include <linux/err.h>
+#include <linux/gpio.h>
#include <mach/hardware.h>
-#include <mach/gpio.h>
#include <mach/irqs.h>
#include <mach/mux.h>
#include <mach/board.h>
}
dev_set_drvdata(&sw->pdev.dev, sw);
- r = omap_request_gpio(sw->gpio);
+ r = gpio_request(sw->gpio, sw->name);
if (r < 0) {
platform_device_unregister(&sw->pdev);
return r;
printk(KERN_ERR "gpio-switch: request_irq() failed "
"for GPIO %d\n", sw->gpio);
platform_device_unregister(&sw->pdev);
- omap_free_gpio(sw->gpio);
+ gpio_free(sw->gpio);
return r;
}
device_remove_file(&sw->pdev.dev, &dev_attr_direction);
platform_device_unregister(&sw->pdev);
- omap_free_gpio(sw->gpio);
+ gpio_free(sw->gpio);
old = sw;
}
kfree(old);