Re: [PATCH] vino: replace dma_sync_single with dma_sync_single_for_cpu

2009-06-10 Thread Mauro Carvalho Chehab
Em Mon, 1 Jun 2009 11:08:26 +0900 FUJITA Tomonori escreveu: > On Thu, 28 May 2009 08:02:14 +0200 > Jiri Slaby wrote: > > > On 05/28/2009 03:10 AM, FUJITA Tomonori wrote: > > > This replaces dma_sync_single() with dma_sync_single_for_cpu() because > > > dma_sync_single() is an obsolete API; incl

Re: [PATCH] vino: replace dma_sync_single with dma_sync_single_for_cpu

2009-05-31 Thread FUJITA Tomonori
On Thu, 28 May 2009 08:02:14 +0200 Jiri Slaby wrote: > On 05/28/2009 03:10 AM, FUJITA Tomonori wrote: > > This replaces dma_sync_single() with dma_sync_single_for_cpu() because > > dma_sync_single() is an obsolete API; include/linux/dma-mapping.h says: > > > > /* Backwards compat, remove in 2.7.

Re: [PATCH] vino: replace dma_sync_single with dma_sync_single_for_cpu

2009-05-27 Thread Jiri Slaby
On 05/28/2009 03:10 AM, FUJITA Tomonori wrote: > This replaces dma_sync_single() with dma_sync_single_for_cpu() because > dma_sync_single() is an obsolete API; include/linux/dma-mapping.h says: > > /* Backwards compat, remove in 2.7.x */ > #define dma_sync_single dma_sync_single_for_

[PATCH] vino: replace dma_sync_single with dma_sync_single_for_cpu

2009-05-27 Thread FUJITA Tomonori
This replaces dma_sync_single() with dma_sync_single_for_cpu() because dma_sync_single() is an obsolete API; include/linux/dma-mapping.h says: /* Backwards compat, remove in 2.7.x */ #define dma_sync_single dma_sync_single_for_cpu #define dma_sync_sg dma_sync_sg_for_cpu Signed