summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Green <andy.green@linaro.org>2012-03-11 20:45:31 +0800
committerAndy Green <andy.green@linaro.org>2012-03-13 11:20:36 +0800
commit93f151b99c8b27d914b3e36ff039abdc1ad45470 (patch)
tree74b008460fd78f9c5cdf4456f5f7a38278726c3c
parentb9b80f2282f7a6e18b29d130bed692bbee8eb828 (diff)
uplevel iommu omap_iommul and dev_pm_qos_update_request
Signed-off-by: Andy Green <andy.green@linaro.org>
-rw-r--r--drivers/iommu/omap-iommu.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/iommu/omap-iommu.c b/drivers/iommu/omap-iommu.c
index d4deb161b34..c3f40028123 100644
--- a/drivers/iommu/omap-iommu.c
+++ b/drivers/iommu/omap-iommu.c
@@ -390,7 +390,7 @@ EXPORT_SYMBOL_GPL(flush_iotlb_all);
* exclusively with locked TLB entries and receive notifications
* for TLB miss then call this function to disable TWL.
*/
-void iommu_set_twl(struct iommu *obj, bool on)
+void iommu_set_twl(struct omap_iommu *obj, bool on)
{
arch_iommu->set_twl(obj, on);
}
@@ -843,7 +843,7 @@ static int device_match_by_alias(struct device *dev, void *data)
* @start Start of valid range
* @end End of valid range
**/
-int iommu_set_da_range(struct iommu *obj, u32 start, u32 end)
+int iommu_set_da_range(struct omap_iommu *obj, u32 start, u32 end)
{
if (!obj)
@@ -887,11 +887,11 @@ static struct omap_iommu *omap_iommu_attach(const char *name, u32 *iopgd)
}
dev_info(obj->dev, "%s: %s qos_request\n", __func__, obj->name);
- pm_qos_update_request(obj->qos_request, 10);
+ dev_pm_qos_update_request(obj->qos_request, 10);
obj->iopgd = iopgd;
err = iommu_enable(obj);
if (err) {
- pm_qos_update_request(obj->qos_request, -1);
+ dev_pm_qos_update_request(obj->qos_request, -1);
goto err_enable;
}
flush_iotlb_all(obj);