]> pilppa.com Git - linux-2.6-omap-h63xx.git/commitdiff
ARM: OMAP: Fix workqueue and set_pte in DSP code
authorDirk Behme <dirk.behme_at_gmail.com>
Fri, 22 Dec 2006 20:33:31 +0000 (12:33 -0800)
committerTony Lindgren <tony@atomide.com>
Fri, 22 Dec 2006 20:33:31 +0000 (12:33 -0800)
ARM: OMAP: Fix workqueue and set_pte in DSP code to make it
compile again.

Signed-off-by: Dirk Behme <dirk.behme_at_gmail.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
arch/arm/plat-omap/dsp/dsp_mem.c
arch/arm/plat-omap/dsp/ipbuf.c

index ebf3c6b171b192b29f7b724aa707fa1b71fc466c..ec88f908a4261ee42076779eba9c7c9d3aef647e 100644 (file)
@@ -507,7 +507,7 @@ exmap_alloc_pte(unsigned long virt, unsigned long phys, pgprot_t prot)
        }
 
        pte = pte_offset_kernel(pmd, virt);
-       set_pte(pte, pfn_pte(phys >> PAGE_SHIFT, prot));
+       set_pte_ext(pte, pfn_pte(phys >> PAGE_SHIFT, prot), 0);
 }
 
 #if 0
@@ -2009,7 +2009,7 @@ static int dsp_mem_open(struct inode *inode, struct file *file)
  * fbupd_cb() is called when fb update is done, in interrupt context.
  * mbox_fbupd() is called when KFUNC:FBCTL:UPD is received from DSP.
  */
-static void fbupd_response(void *arg)
+static void fbupd_response(struct work_struct *unused)
 {
        int status;
 
@@ -2022,8 +2022,7 @@ static void fbupd_response(void *arg)
        }
 }
 
-static DECLARE_WORK(fbupd_response_work, (void (*)(void *))fbupd_response,
-                   NULL);
+static DECLARE_WORK(fbupd_response_work, fbupd_response);
 
 static void fbupd_cb(void *arg)
 {
@@ -2283,7 +2282,7 @@ static ssize_t mempool_show(struct device *dev, struct device_attribute *attr,
         DSP_MMU_FAULT_ST_TRANS)
 #endif /* CONFIG_ARCH_OMAP1 */
 
-static void do_mmu_int(void)
+static void do_mmu_int(struct work_struct *unused)
 {
 #if defined(CONFIG_ARCH_OMAP1)
 
@@ -2417,7 +2416,7 @@ static void do_mmu_int(void)
        enable_irq(omap_dsp->mmu_irq);
 }
 
-static DECLARE_WORK(mmu_int_work, (void (*)(void *))do_mmu_int, NULL);
+static DECLARE_WORK(mmu_int_work, do_mmu_int);
 
 /*
  * DSP MMU interrupt handler
index 26cdf74cf7327f4f11bf40774c88f1365129f9a1..943943bddb261ea2b45294b399e85c1f0b65f332 100644 (file)
@@ -245,7 +245,7 @@ static int try_yld(struct ipbuf_head *ipb_h)
 /*
  * balancing ipbuf lines with DSP
  */
-static void do_balance_ipbuf(void)
+static void do_balance_ipbuf(struct work_struct *unused)
 {
        while (ipbcfg.bsycnt <= ipbcfg.ln / 4) {
                struct ipbuf_head *ipb_h;
@@ -257,8 +257,7 @@ static void do_balance_ipbuf(void)
        }
 }
 
-static DECLARE_WORK(balance_ipbuf_work, (void (*)(void *))do_balance_ipbuf,
-                   NULL);
+static DECLARE_WORK(balance_ipbuf_work, do_balance_ipbuf);
 
 void balance_ipbuf(void)
 {