Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: ion: ion_cma_heap: Remove '0x' when using %pa format

%pa format already prints in hexadecimal format, so remove the '0x' annotation
to avoid a double '0x0x' pattern.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Fabio Estevam and committed by
Greg Kroah-Hartman
2a3fcc51 53a91c68

+1 -1
+1 -1
drivers/staging/android/ion/ion_cma_heap.c
··· 135 135 struct device *dev = cma_heap->dev; 136 136 struct ion_cma_buffer_info *info = buffer->priv_virt; 137 137 138 - dev_dbg(dev, "Return buffer %p physical address 0x%pa\n", buffer, 138 + dev_dbg(dev, "Return buffer %p physical address %pa\n", buffer, 139 139 &info->handle); 140 140 141 141 *addr = info->handle;