a89f364ae8
Replace all occurs of __FUNCTION__ except for the check in checkpatch with the non GCC specific __func__. One line in hcd-musb.c was manually tweaked to pass checkpatch. Signed-off-by: Alistair Francis <alistair.francis@xilinx.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Reviewed-by: Anthony PERARD <anthony.perard@citrix.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Gerd Hoffmann <kraxel@redhat.com> [THH: Removed hunks related to pxa2xx_mmci.c (fixed already)] Signed-off-by: Thomas Huth <thuth@redhat.com>
18 lines
336 B
C
18 lines
336 B
C
/*
|
|
* Common declarations for the Zaurii.
|
|
*
|
|
* This file is licensed under the GNU GPL.
|
|
*/
|
|
#ifndef QEMU_SHARPSL_H
|
|
#define QEMU_SHARPSL_H
|
|
|
|
#define zaurus_printf(format, ...) \
|
|
fprintf(stderr, "%s: " format, __func__, ##__VA_ARGS__)
|
|
|
|
/* zaurus.c */
|
|
|
|
#define SL_PXA_PARAM_BASE 0xa0000a00
|
|
void sl_bootparam_write(hwaddr ptr);
|
|
|
|
#endif
|