From: Mauro Carvalho Chehab <mauro.chehab@linux.intel.com>
To: "Sharma, Swati2" <swati2.sharma@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: Re: [igt-dev] [i-g-t V2 1/7] tests/intel/pm: Rename i915_pm_backlight to kms_pm_backlight
Date: Wed, 6 Sep 2023 11:33:02 +0200 [thread overview]
Message-ID: <20230906113302.3ef9f439@maurocar-mobl2> (raw)
In-Reply-To: <f4a9b8a5-ec49-b685-71e6-954e93894398@intel.com>
On Wed, 6 Sep 2023 13:23:24 +0530
"Sharma, Swati2" <swati2.sharma@intel.com> wrote:
> > --- a/tests/intel/i915_pm_backlight.c
> > +++ b/tests/intel/kms_pm_backlight.c
> > @@ -1,27 +1,6 @@
> > +// SPDX-License-Identifier: MIT
> > /*
> > - * Copyright © 2015 Intel Corporation
> > - *
> > - * 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, sublicense,
> > - * 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:
> > - *
> > - * The above copyright notice and this permission notice (including the next
> > - * paragraph) shall be included in all copies or substantial portions of the
> > - * Software.
> > - *
> > - * 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 NONINFRINGEMENT. IN NO EVENT SHALL
> > - * THE AUTHORS OR COPYRIGHT HOLDERS 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.
> > - *
> > - * Author:
> > - * Antti Koskipaa <antti.koskipaa@linux.intel.com>
> > + * Copyright © 2023 Intel Corporation
> > *
> > */
>
> We can't remove old copyright. This has to remain same. With new IGT we
> are using SPDX, older IGT will continue using already existing copyright.
I'm not a lawyer, but let me give my 2 cents here.
IMO, the best is to have a change like that on a separate patch, as this is
not related to "Rename i915_pm_backlight to kms_pm_backlight".
Now, the above changeset is actually doing two changes:
1. It is replacing a MIT text by a SPDX equivalent. This should be fine,
provided that you keep the original copyright date - eventually adding
2023 to it. So:
* Copyright © 2015 Intel Corporation
*
* 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, sublicense,
* 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:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* 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 NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS 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.
can be replaced by either:
// SPDX-License-Identifier: MIT
/* Copyright © 2015 Intel Corporation */
or:
// SPDX-License-Identifier: MIT
/* Copyright © 2015, 2023 Intel Corporation */
2. It is also stripping authorship rights. Depending on the jurisdiction,
authorship rights are explicitly protected. Laws may even prevent it to
be sellable. They're also forever protected.
So, for instance, even if you buy a picture from Salvador Dali, even
buying its copyrights, you can't remove his signature and replace by
yours.
So, with regards to this change:
- * Author:
- * Antti Koskipaa <antti.koskipaa@linux.intel.com>
NACK.
Regards,
Mauro
next prev parent reply other threads:[~2023-09-06 9:33 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-05 12:53 [igt-dev] [i-g-t V2 0/7] Separate display PM tests from Core Bhanuprakash Modem
2023-09-05 12:53 ` [igt-dev] [i-g-t V2 1/7] tests/intel/pm: Rename i915_pm_backlight to kms_pm_backlight Bhanuprakash Modem
2023-09-06 7:53 ` Sharma, Swati2
2023-09-06 9:33 ` Mauro Carvalho Chehab [this message]
2023-09-05 12:53 ` [igt-dev] [i-g-t V2 2/7] tests/intel/kms_pm_backlight: Fix testplan documentation Bhanuprakash Modem
2023-09-06 7:56 ` Sharma, Swati2
2023-09-05 12:53 ` [igt-dev] [i-g-t V2 3/7] tests/intel/pm: Rename i915_pm_dc to kms_pm_dc Bhanuprakash Modem
2023-09-06 7:59 ` Sharma, Swati2
2023-09-05 12:53 ` [igt-dev] [i-g-t V2 4/7] tests/intel/kms_pm_dc: Fix testplan documentation Bhanuprakash Modem
2023-09-06 8:07 ` Sharma, Swati2
2023-09-05 12:53 ` [igt-dev] [i-g-t V2 5/7] tests/intel/pm: Rename i915_pm_lpsp to kms_pm_lpsp Bhanuprakash Modem
2023-09-06 8:08 ` Sharma, Swati2
2023-09-05 12:53 ` [igt-dev] [i-g-t V2 6/7] tests/intel/kms_pm_lpsp: Fix testplan documentation Bhanuprakash Modem
2023-09-06 8:12 ` Sharma, Swati2
2023-09-05 12:53 ` [igt-dev] [i-g-t V2 7/7] tests/intel/pm: Separate display specific tests from i915_pm_rpm Bhanuprakash Modem
2023-09-06 13:35 ` Sharma, Swati2
2023-09-05 17:07 ` [igt-dev] ✓ Fi.CI.BAT: success for Separate display PM tests from Core (rev2) Patchwork
2023-09-05 20:26 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230906113302.3ef9f439@maurocar-mobl2 \
--to=mauro.chehab@linux.intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=swati2.sharma@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox