]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - arch/powerpc/platforms/cell/spu_syscalls.c
Merge branch 'at91' into devel
[linux-2.6-omap-h63xx.git] / arch / powerpc / platforms / cell / spu_syscalls.c
index a9438b719fe8ba38e53f48f4e2106e1e81746cc0..75530d99eda6b831f363170ada2822140f38c29c 100644 (file)
@@ -145,6 +145,20 @@ int elf_coredump_extra_notes_write(struct file *file, loff_t *foffset)
        return ret;
 }
 
+void notify_spus_active(void)
+{
+       struct spufs_calls *calls;
+
+       calls = spufs_calls_get();
+       if (!calls)
+               return;
+
+       calls->notify_spus_active();
+       spufs_calls_put(calls);
+
+       return;
+}
+
 int register_spu_syscalls(struct spufs_calls *calls)
 {
        if (spufs_calls)