From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 994FDA0613 for ; Wed, 25 Sep 2019 17:52:03 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 106F61BEB1; Wed, 25 Sep 2019 17:51:48 +0200 (CEST) Received: from mail-pl1-f193.google.com (mail-pl1-f193.google.com [209.85.214.193]) by dpdk.org (Postfix) with ESMTP id 4DA8C2C38 for ; Wed, 25 Sep 2019 17:51:41 +0200 (CEST) Received: by mail-pl1-f193.google.com with SMTP id e5so2628233pls.9 for ; Wed, 25 Sep 2019 08:51:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=AAE2xhsAcZKnQbmY0Syy6CRDcY0+BQY9NUJC+4xpXaY=; b=oruPSPFANYIWJUtyHB3OewMXph0dBCr7CPMBjMpMlkTLt8OxAWwRTVZOCaJ8JJkw18 UySEJCWOfWuflAyokGy0quY0Vpk46mM6PXdIoAfbebgDVggIGswy15mh/QrxYP0Rjl6I 7GdUOL8QHc+TxjyhLrbkkPIosAjc3W4vysphQqOt9ThsWRVm6GE8qU2ayhBurDTXnUrP x/qKGHMfwgN2XhRE6xfNOMCwMceDZr9+RAFeC+2Rn6Cr/zTgNlORyle3aNctpjfABdWg g1Hjgu6xvEyr1+PxJAFJI+ZwksqpfM6M6rTIxRT1VH1f2KpCL0xTo2CC0Y0RHfnkNpE1 VpDA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=AAE2xhsAcZKnQbmY0Syy6CRDcY0+BQY9NUJC+4xpXaY=; b=a2MaCOt6MVrqC4l2u1FT5EIuXY0gRCE6wY089ZldJ06W5GBNXSrZSnH3w5NR2OMJak 95aX4NBxp9AMPWKrqyhI4r8HBFhxrtBTJg8TGMv7S2nM1Sm6fOfLgEUmJNXDYWDKIe7o C6caN4dWAG1wVMXJzYUkKwpEAUlX0AqAZF1weWv4DtGmH9692KAGj/xhEbuusGgojmcQ j7/pP4+J4GpX5UGjLspjuf7MWU+9DDDjBa5N9ZnZtbQsd5om6uUtdvBGhzWfuLCpWZBp mLQ9lzwM8yM7PPuuzUDVBI8TNCc1cZCOgT7fRocIhw4R6Osw1QtnHAVsQTD2eQh1Eduh q1kg== X-Gm-Message-State: APjAAAWnJY093K9poWu6eJh+5tI+c9ozbGZhCKkq/gt+zcNgRmMVA1gK Zz2V3NmFDnlOeRlHPv9lI30mHzq52xI= X-Google-Smtp-Source: APXvYqwp3wKqyhRxqHto2vG+3em+ojwEAgHvWL3QuuS5n3bK/W4yeGjFfyuD1unPpSupGsH77+7EyQ== X-Received: by 2002:a17:902:868a:: with SMTP id g10mr9894332plo.235.1569426699949; Wed, 25 Sep 2019 08:51:39 -0700 (PDT) Received: from hermes.lan (204-195-22-127.wavecable.com. [204.195.22.127]) by smtp.gmail.com with ESMTPSA id h9sm2783pgh.51.2019.09.25.08.51.39 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 25 Sep 2019 08:51:39 -0700 (PDT) From: Stephen Hemminger To: dev@dpdk.org Cc: Stephen Hemminger Date: Wed, 25 Sep 2019 08:51:30 -0700 Message-Id: <20190925155135.1688-3-stephen@networkplumber.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20190925155135.1688-1-stephen@networkplumber.org> References: <20190925155135.1688-1-stephen@networkplumber.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH 2/7] reciprocal: remove redundant boilerplate X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" No need for extra language, coverd by SPDX tag. Signed-off-by: Stephen Hemminger --- lib/librte_eal/common/rte_reciprocal.c | 34 ++------------------------ 1 file changed, 2 insertions(+), 32 deletions(-) diff --git a/lib/librte_eal/common/rte_reciprocal.c b/lib/librte_eal/common/rte_reciprocal.c index f017d0c2830d..66040064abc5 100644 --- a/lib/librte_eal/common/rte_reciprocal.c +++ b/lib/librte_eal/common/rte_reciprocal.c @@ -1,37 +1,7 @@ /* SPDX-License-Identifier: BSD-3-Clause * Copyright(c) 2017 Cavium, Inc - */ -/*- - * BSD LICENSE - * - * Copyright(c) Hannes Frederic Sowa - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Intel Corporation nor the names of its - * contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * Copyright(c) Hannes Frederic Sowa + * All rights reserved. */ #include -- 2.20.1