On 26-Apr-19 16:18, Bernard Metzler wrote: > diff --git a/drivers/infiniband/sw/siw/siw_debug.h b/drivers/infiniband/sw/siw/siw_debug.h > new file mode 100644 > index 000000000000..2cfe7ce68428 > --- /dev/null > +++ b/drivers/infiniband/sw/siw/siw_debug.h > @@ -0,0 +1,40 @@ > +/* SPDX-License-Identifier: GPL-2.0 or BSD-3-Clause */ > + > +/* Authors: Bernard Metzler <bmt@xxxxxxxxxxxxxx> */ > +/* Copyright (c) 2008-2019, IBM Corporation */ > + > +#ifndef _SIW_DEBUG_H > +#define _SIW_DEBUG_H > + > +#define siw_dbg(ddev, fmt, ...) \ > + dev_dbg(&(ddev)->base_dev.dev, "cpu%2d %s: " fmt, smp_processor_id(), \ > + __func__, ##__VA_ARGS__) > + The ibdev_* print functions are now merged, you can start using them instead of dev_* prints.