Re: [PATCH] fsl-diu-fb: Update Freescale DIU driver to use page_alloc_exact()

2008-07-04 Thread Timur Tabi
On Jun 30, 2008, at 4:24 PM, Andrew Morton wrote: This is also incorrect. We cannot pass u64 or uint64_t into printk at all. We do not know what type the architectures uses to implement them. It should be cast to a known type. In this case `unsigned long long'. Ok, I'll fix these, but I'm

Re: [PATCH] fsl-diu-fb: Update Freescale DIU driver to use page_alloc_exact()

2008-06-30 Thread Andrew Morton
On Tue, 24 Jun 2008 11:44:13 -0500 Timur Tabi <[EMAIL PROTECTED]> wrote: > Update the Freescale DIU driver to use page_alloc_exact() to allocate a > DMA buffer. This also eliminates the rheap-based memory allocator. We > can do this now because commit 6ccf61f9 allows us to allocate 8MB physicall

[PATCH] fsl-diu-fb: Update Freescale DIU driver to use page_alloc_exact()

2008-06-24 Thread Timur Tabi
Update the Freescale DIU driver to use page_alloc_exact() to allocate a DMA buffer. This also eliminates the rheap-based memory allocator. We can do this now because commit 6ccf61f9 allows us to allocate 8MB physically- contiguous memory blocks. Signed-off-by: Timur Tabi <[EMAIL PROTECTED]> ---