From patchwork Wed Feb 12 07:30:36 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thierry Reding X-Patchwork-Id: 319560 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 338752C00B0 for ; Wed, 12 Feb 2014 18:30:46 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751146AbaBLHap (ORCPT ); Wed, 12 Feb 2014 02:30:45 -0500 Received: from mail-bk0-f52.google.com ([209.85.214.52]:38269 "EHLO mail-bk0-f52.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750963AbaBLHap (ORCPT ); Wed, 12 Feb 2014 02:30:45 -0500 Received: by mail-bk0-f52.google.com with SMTP id e11so2523426bkh.39 for ; Tue, 11 Feb 2014 23:30:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=iwKnPoKDMajprnQTvwOWQwlBRqFUSEseHDGevaY7y1k=; b=iSk0Jypcm3AlB00iXB2iFT+XnwGBmb6Q6+ZDAt6KfVZxrAnagPsnpWbYH8rQnpnq5A m8XwBzOIbeJl03oAbIdSXk5Ht3cSsIdDl4LqmCTxKtmEhXXbbDBK2ksLWt7CDMwfjKsL ggdZ5BuhLOliFOvu6AWAvH60Lb3XUZgIh9SCfgQzDHRfTwFTTFSdu+MbAA8dix5KqSha BQHpxl+Xsxp+Yn25ud77tqTnu2iAXatLAt3HxqHmxprLS0vfziM9CDHgJkT439na/KXD Om1xCs+andSXdAlOPevuwFxVsMEmIv0x7Ue8uxGsrOfI8xopZ5rVF5MqmrqgIX5Lx6WX 8k9A== X-Received: by 10.204.54.197 with SMTP id r5mr63471bkg.27.1392190244079; Tue, 11 Feb 2014 23:30:44 -0800 (PST) Received: from localhost (port-54112.pppoe.wtnet.de. [46.59.212.13]) by mx.google.com with ESMTPSA id r1sm17295399bkk.2.2014.02.11.23.30.43 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 11 Feb 2014 23:30:43 -0800 (PST) From: Thierry Reding To: dri-devel@lists.freedesktop.org Cc: linux-tegra@vger.kernel.org Subject: [PATCH 1/3] drm/tegra: Relicense public header under MIT Date: Wed, 12 Feb 2014 08:30:36 +0100 Message-Id: <1392190238-1717-2-git-send-email-treding@nvidia.com> X-Mailer: git-send-email 1.8.4.2 In-Reply-To: <1392190238-1717-1-git-send-email-treding@nvidia.com> References: <1392190238-1717-1-git-send-email-treding@nvidia.com> Sender: linux-tegra-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-tegra@vger.kernel.org This file will eventually be exported to libdrm, where all the public header files use the MIT license. Reported-by: Erik Faye-Lund Signed-off-by: Thierry Reding --- include/uapi/drm/tegra_drm.h | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/include/uapi/drm/tegra_drm.h b/include/uapi/drm/tegra_drm.h index 5e1ab552cbed..956ed8aa9d98 100644 --- a/include/uapi/drm/tegra_drm.h +++ b/include/uapi/drm/tegra_drm.h @@ -1,17 +1,25 @@ /* * Copyright (c) 2012-2013, NVIDIA CORPORATION. All rights reserved. * - * This program is free software; you can redistribute it and/or modify it - * under the terms and conditions of the GNU General Public License, - * version 2, as published by the Free Software Foundation. + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the + * "Software"), to deal in the Software without restriction, including + * without limitation the rights to use, copy, modify, merge, publish, + * distribute, sub license, and/or sell copies of the Software, and to + * permit persons to whom the Software is furnished to do so, subject to + * the following conditions: * - * This program is distributed in the hope it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for - * more details. + * The above copyright notice and this permission notice (including the + * next paragraph) shall be included in all copies or substantial portions + * of the Software. * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. + * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR + * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef _UAPI_TEGRA_DRM_H_