mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
misc: replace __FUNCTION__ with __func__
__FUNCTION__ is gcc-specific, use __func__ Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
d5c003b4d1
commit
80a914dc05
6 changed files with 8 additions and 8 deletions
|
@ -11,7 +11,7 @@
|
|||
#undef DEBUG_PROCESS
|
||||
#ifdef DEBUG_PROCESS
|
||||
#define DPRINTK(fmt, args...) printk("%s:%d:%s: " fmt, __FILE__, __LINE__, \
|
||||
__FUNCTION__, ##args)
|
||||
__func__, ##args)
|
||||
#else
|
||||
#define DPRINTK(fmt, args...)
|
||||
#endif
|
||||
|
|
|
@ -564,7 +564,7 @@ static void kvm_set_time_scale(uint32_t tsc_khz, struct pvclock_vcpu_time_info *
|
|||
hv_clock->tsc_to_system_mul = div_frac(nsecs, tps32);
|
||||
|
||||
pr_debug("%s: tsc_khz %u, tsc_shift %d, tsc_mul %u\n",
|
||||
__FUNCTION__, tsc_khz, hv_clock->tsc_shift,
|
||||
__func__, tsc_khz, hv_clock->tsc_shift,
|
||||
hv_clock->tsc_to_system_mul);
|
||||
}
|
||||
|
||||
|
|
|
@ -517,7 +517,7 @@ static int i915_dispatch_flip(struct drm_device * dev)
|
|||
RING_LOCALS;
|
||||
|
||||
DRM_DEBUG("%s: page=%d pfCurrentPage=%d\n",
|
||||
__FUNCTION__,
|
||||
__func__,
|
||||
dev_priv->current_page,
|
||||
dev_priv->sarea_priv->pf_current_page);
|
||||
|
||||
|
@ -642,7 +642,7 @@ static int i915_cmdbuffer(struct drm_device *dev, void *data,
|
|||
static int i915_flip_bufs(struct drm_device *dev, void *data,
|
||||
struct drm_file *file_priv)
|
||||
{
|
||||
DRM_DEBUG("%s\n", __FUNCTION__);
|
||||
DRM_DEBUG("%s\n", __func__);
|
||||
|
||||
LOCK_TEST_WITH_RETURN(dev, file_priv);
|
||||
|
||||
|
|
|
@ -455,10 +455,10 @@ static void xpad_bulk_out(struct urb *urb)
|
|||
case -ENOENT:
|
||||
case -ESHUTDOWN:
|
||||
/* this urb is terminated, clean up */
|
||||
dbg("%s - urb shutting down with status: %d", __FUNCTION__, urb->status);
|
||||
dbg("%s - urb shutting down with status: %d", __func__, urb->status);
|
||||
break;
|
||||
default:
|
||||
dbg("%s - nonzero urb status received: %d", __FUNCTION__, urb->status);
|
||||
dbg("%s - nonzero urb status received: %d", __func__, urb->status);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1673,7 +1673,7 @@ static int mpc_validate_xid(struct mpcg_info *mpcginfo)
|
|||
|
||||
done:
|
||||
if (rc) {
|
||||
ctcm_pr_info("ctcmpc : %s() failed\n", __FUNCTION__);
|
||||
ctcm_pr_info("ctcmpc : %s() failed\n", __func__);
|
||||
priv->xid->xid2_flag2 = 0x40;
|
||||
grp->saved_xid2->xid2_flag2 = 0x40;
|
||||
}
|
||||
|
|
|
@ -48,7 +48,7 @@ early_param("bootmem_debug", bootmem_debug_setup);
|
|||
if (unlikely(bootmem_debug)) \
|
||||
printk(KERN_INFO \
|
||||
"bootmem::%s " fmt, \
|
||||
__FUNCTION__, ## args); \
|
||||
__func__, ## args); \
|
||||
})
|
||||
|
||||
static unsigned long __init bootmap_bytes(unsigned long pages)
|
||||
|
|
Loading…
Reference in a new issue