From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-4.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id E2635C433E0 for ; Fri, 26 Jun 2020 03:35:50 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id B8A3120709 for ; Fri, 26 Jun 2020 03:35:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726594AbgFZDft (ORCPT ); Thu, 25 Jun 2020 23:35:49 -0400 Received: from smtprelay0114.hostedemail.com ([216.40.44.114]:45818 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1725830AbgFZDft (ORCPT ); Thu, 25 Jun 2020 23:35:49 -0400 Received: from filter.hostedemail.com (clb03-v110.bra.tucows.net [216.40.38.60]) by smtprelay08.hostedemail.com (Postfix) with ESMTP id 268F3182CED28; Fri, 26 Jun 2020 03:35:48 +0000 (UTC) X-Session-Marker: 6A6F6540706572636865732E636F6D X-HE-Tag: home85_2002a2026e52 X-Filterd-Recvd-Size: 2425 Received: from XPS-9350.home (unknown [47.151.133.149]) (Authenticated sender: joe@perches.com) by omf13.hostedemail.com (Postfix) with ESMTPA; Fri, 26 Jun 2020 03:35:45 +0000 (UTC) Message-ID: Subject: Re: [net-next v3 15/15] idpf: Introduce idpf driver From: Joe Perches To: Jeff Kirsher , davem@davemloft.net Cc: Alan Brady , netdev@vger.kernel.org, nhorman@redhat.com, sassmann@redhat.com, Alice Michael , Phani Burra , Joshua Hay , Madhu Chittim , Pavan Kumar Linga , Donald Skidmore , Jesse Brandeburg , Sridhar Samudrala , kbuild test robot Date: Thu, 25 Jun 2020 20:35:44 -0700 In-Reply-To: <20200626020737.775377-16-jeffrey.t.kirsher@intel.com> References: <20200626020737.775377-1-jeffrey.t.kirsher@intel.com> <20200626020737.775377-16-jeffrey.t.kirsher@intel.com> Content-Type: text/plain; charset="ISO-8859-1" User-Agent: Evolution 3.36.2-0ubuntu1 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org On Thu, 2020-06-25 at 19:07 -0700, Jeff Kirsher wrote: > From: Alan Brady > > 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, "); > +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);