Revision b4e0f9eb8aeceb22c48fee005378bd19e25216fc authored by FUJITA Tomonori on 19 November 2008, 04:53:42 UTC, committed by Ingo Molnar on 19 November 2008, 08:11:13 UTC
Impact: cleanup

I got the following warnings on IA64:

  linux-2.6/drivers/pci/intel-iommu.c: In function 'init_dmars':
  linux-2.6/drivers/pci/intel-iommu.c:1658: warning: format '%Lx' expects type 'long long unsigned int', but argument 2 has type 'u64'
  linux-2.6/drivers/pci/intel-iommu.c:1663: warning: format '%Lx' expects type 'long long unsigned int', but argument 2 has type 'u64'

Another victim of int-ll64.h versus int-l64.h confusion between platforms.

->reg_base_addr has a type of u64 - which can only be printed out
consistently if we cast its type up to LL.

[ Eventually reg_base_addr should be converted to phys_addr_t, for which
  we have the %pR printk helper - but that is out of the scope of late
  -rc's. ]

Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
1 parent 7f0f598
History
File Mode Size
interface
events.h -rw-r--r-- 1.7 KB
features.h -rw-r--r-- 463 bytes
grant_table.h -rw-r--r-- 4.3 KB
hvc-console.h -rw-r--r-- 449 bytes
page.h -rw-r--r-- 26 bytes
xen-ops.h -rw-r--r-- 349 bytes
xenbus.h -rw-r--r-- 8.1 KB
xencomm.h -rw-r--r-- 2.5 KB

back to top