> -----Original Message----- > From: Joe Perches <[email protected]> > Sent: Thursday, June 25, 2020 8:36 PM > To: Kirsher, Jeffrey T <[email protected]>; [email protected] > Cc: Brady, Alan <[email protected]>; [email protected]; > [email protected]; [email protected]; Michael, Alice > <[email protected]>; Burra, Phani R <[email protected]>; Hay, > Joshua A <[email protected]>; Chittim, Madhu > <[email protected]>; Linga, Pavan Kumar > <[email protected]>; Skidmore, Donald C > <[email protected]>; Brandeburg, Jesse > <[email protected]>; Samudrala, Sridhar > <[email protected]>; lkp <[email protected]> > 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 <[email protected]> > > > > 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, <[email protected]>"); > > +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
