> -----Original Message----- > From: Joe Perches <j...@perches.com> > Sent: Thursday, June 25, 2020 8:36 PM > To: Kirsher, Jeffrey T <jeffrey.t.kirs...@intel.com>; da...@davemloft.net > Cc: Brady, Alan <alan.br...@intel.com>; netdev@vger.kernel.org; > nhor...@redhat.com; sassm...@redhat.com; Michael, Alice > <alice.mich...@intel.com>; Burra, Phani R <phani.r.bu...@intel.com>; Hay, > Joshua A <joshua.a....@intel.com>; Chittim, Madhu > <madhu.chit...@intel.com>; Linga, Pavan Kumar > <pavan.kumar.li...@intel.com>; Skidmore, Donald C > <donald.c.skidm...@intel.com>; Brandeburg, Jesse > <jesse.brandeb...@intel.com>; Samudrala, Sridhar > <sridhar.samudr...@intel.com>; lkp <l...@intel.com> > Subject: Re: [net-next v3 15/15] idpf: Introduce idpf driver > > On Thu, 2020-06-25 at 19:07 -0700, Jeff Kirsher wrote: > > From: Alan Brady <alan.br...@intel.com> > > > > Utilizes the Intel Ethernet Common Module and provides a device > > specific implementation for data plane devices. > [] > > diff --git a/drivers/net/ethernet/intel/idpf/idpf_main.c > > b/drivers/net/ethernet/intel/idpf/idpf_main.c > [] > > @@ -0,0 +1,136 @@ > > +// SPDX-License-Identifier: GPL-2.0-only > > +/* Copyright (C) 2020 Intel Corporation */ > > + > > +#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt > > + > > +#include "idpf_dev.h" > > +#include "idpf_devids.h" > > + > > +#define DRV_SUMMARY "Intel(R) Data Plane Function Linux Driver" > > +static const char idpf_driver_string[] = DRV_SUMMARY; static const > > +char idpf_copyright[] = "Copyright (c) 2020, Intel Corporation."; > > + > > +MODULE_AUTHOR("Intel Corporation, <linux.n...@intel.com>"); > > +MODULE_DESCRIPTION(DRV_SUMMARY); MODULE_LICENSE("GPL v2"); > [] > > +static int __init idpf_module_init(void) { > > + int status; > > + > > + pr_info("%s", idpf_driver_string); > > missing format terminating newline. > > > + pr_info("%s\n", idpf_copyright); > >
Will fix, thanks. Alan