X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/fb189822fcab111e55d1c7e83c482dc2c144500a..9a74b7c37f23cca5f3ad3fa1ce7a716ba1b93cfd:/target/linux/s3c24xx/files-2.6.30/arch/arm/mach-s3c2442/gta02-pm-bt.c diff --git a/target/linux/s3c24xx/files-2.6.30/arch/arm/mach-s3c2442/gta02-pm-bt.c b/target/linux/s3c24xx/files-2.6.30/arch/arm/mach-s3c2442/gta02-pm-bt.c index 02cdd221d..95c1e59e2 100644 --- a/target/linux/s3c24xx/files-2.6.30/arch/arm/mach-s3c2442/gta02-pm-bt.c +++ b/target/linux/s3c24xx/files-2.6.30/arch/arm/mach-s3c2442/gta02-pm-bt.c @@ -20,7 +20,6 @@ #include #include -#include #include #include @@ -62,7 +61,7 @@ static void __gta02_pm_bt_toggle_radio(struct device *dev, unsigned int on) bt_data = dev_get_drvdata(dev); - gta02_gpb_setpin(GTA02_GPIO_BT_EN, !on); + s3c2410_gpio_setpin(GTA02_GPIO_BT_EN, !on); if (on) { if (!regulator_is_enabled(bt_data->regulator)) @@ -72,7 +71,7 @@ static void __gta02_pm_bt_toggle_radio(struct device *dev, unsigned int on) regulator_disable(bt_data->regulator); } - gta02_gpb_setpin(GTA02_GPIO_BT_EN, on); + s3c2410_gpio_setpin(GTA02_GPIO_BT_EN, on); } @@ -100,7 +99,7 @@ static ssize_t bt_write(struct device *dev, struct device_attribute *attr, __gta02_pm_bt_toggle_radio(dev, on); } else if (!strcmp(attr->attr.name, "reset")) { /* reset is low-active, so we need to invert */ - gta02_gpb_setpin(GTA02_GPIO_BT_EN, on ? 0 : 1); + s3c2410_gpio_setpin(GTA02_GPIO_BT_EN, on ? 0 : 1); } return count; @@ -177,7 +176,7 @@ static int __init gta02_bt_probe(struct platform_device *pdev) /* we pull reset to low to make sure that the chip doesn't * drain power through the reset line */ - gta02_gpb_setpin(GTA02_GPIO_BT_EN, 0); + s3c2410_gpio_setpin(GTA02_GPIO_BT_EN, 0); rfkill = rfkill_allocate(&pdev->dev, RFKILL_TYPE_BLUETOOTH);