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);