| To: | linux-mips@linux-mips.org, Ralf Baechle <ralf@linux-mips.org> |
|---|---|
| Subject: | [PATCH 02/30] Fix warning: incompatible argument type of virt_to_phys |
| From: | Wu Zhangjin <wuzhangjin@gmail.com> |
| Date: | Sat, 16 May 2009 05:59:25 +0800 |
| Cc: | Arnaud Patard <apatard@mandriva.com>, loongson-dev@googlegroups.com, zhangfx@lemote.com, yanh@lemote.com, Philippe Vachon <philippe@cowpig.ca>, Zhang Le <r0bertz@gentoo.org>, Erwan Lerale <erwan@thiscow.com> |
| Dkim-signature: | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:subject:from:reply-to:to:cc :content-type:organization:date:message-id:mime-version:x-mailer :content-transfer-encoding; bh=hkKjcNJHPrSOypiHB8get6qF4/fKMjHgGZP/PsTns48=; b=PYjMTdpJXbIJvpUfgPueRsXxnwK7fBKABy30dcWyWCsZSaBQyOICwr+QPFJXjioS0G zHKQR4NwTfNnIQyl17FB1z3sLzll5jSjjhXKRS0MDcuZkBxnN4kYb8rJCXVXpFGqzEDa wB+buleYAkXG3Iof424OUlWliRv9hqLD214HA= |
| Domainkey-signature: | a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:reply-to:to:cc:content-type:organization:date :message-id:mime-version:x-mailer:content-transfer-encoding; b=BjuVc8uiDtKVAiqTJjPjBbRbtvKg3IwyDHcPOdQbuLIWIZkPF3oKpSxBSQ/d0Ea+RE AGsAuYVZkD+fGUKyU3OsCEt9hafV3/lU/ogFReeepD95X6aSGT3xd1XO3DWdC+zXn94A qR45aeYpXkQSIF2UblTd0ZitaIvfg024Ye5ug= |
| Organization: | DSLab, Lanzhou University, China |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| Reply-to: | wuzhangjin@gmail.com |
| Sender: | linux-mips-bounce@linux-mips.org |
>From f326164c8ef7950abc1e7bbe0a7490d6d69e2f73 Mon Sep 17 00:00:00 2001
From: Wu Zhangjin <wuzhangjin@gmail.com>
Date: Tue, 12 May 2009 10:46:07 +0800
Subject: [PATCH 02/30] Fix warning: incompatible argument type of
virt_to_phys
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit
mm/page_alloc.c:1760: warning: passing argument 1 of ‘virt_to_phys’
makes pointer from integer without a cast
mm/page_alloc.c:1760
...
unsigned long addr;
...
split_page(virt_to_page(addr), order);
arch/mips/include/asm/page.h
#define virt_to_page(kaddr) pfn_to_page(PFN_DOWN(virt_to_phys(kaddr)))
#define virt_addr_valid(kaddr)
pfn_valid(PFN_DOWN(virt_to_phys(kaddr)))
arch/mips/include/asm/io.h
static inline unsigned long virt_to_phys(volatile const void *address)
---
arch/mips/include/asm/page.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/mips/include/asm/page.h b/arch/mips/include/asm/page.h
index fe7a88e..15d93ec 100644
--- a/arch/mips/include/asm/page.h
+++ b/arch/mips/include/asm/page.h
@@ -176,8 +176,8 @@ typedef struct { unsigned long pgprot; } pgprot_t;
#endif
-#define virt_to_page(kaddr) pfn_to_page(PFN_DOWN(virt_to_phys(kaddr)))
-#define virt_addr_valid(kaddr) pfn_valid(PFN_DOWN(virt_to_phys(kaddr)))
+#define virt_to_page(kaddr) pfn_to_page(PFN_DOWN(virt_to_phys((void
*)kaddr)))
+#define virt_addr_valid(kaddr) pfn_valid(PFN_DOWN(virt_to_phys((void
*)kaddr)))
#define VM_DATA_DEFAULT_FLAGS (VM_READ | VM_WRITE | VM_EXEC | \
VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
--
1.6.2.1
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH 01/30] Fix warning: incompatible argument type of pci_fixup_irqs, Wu Zhangjin |
|---|---|
| Next by Date: | [PATCH 03/30] fix error: incompatiable argument type of clear_user, Wu Zhangjin |
| Previous by Thread: | [PATCH 01/30] Fix warning: incompatible argument type of pci_fixup_irqs, Wu Zhangjin |
| Next by Thread: | [PATCH 03/30] fix error: incompatiable argument type of clear_user, Wu Zhangjin |
| Indexes: | [Date] [Thread] [Top] [All Lists] |