]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Scripts/ConvertFceToStructurePcd.py
BaseTools: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / BaseTools / Scripts / ConvertFceToStructurePcd.py
index 59eec28d5e0010e467302accaa338d006e08c0fd..c65cb555afe2a6ad6160136baf3caf801941b23d 100644 (file)
@@ -6,13 +6,7 @@
 # PCD setting in DEC/DSC/INF files.\r
 #\r
 # Copyright (c) 2018, Intel Corporation. All rights reserved.<BR>\r
-# This program and the accompanying materials\r
-# are licensed and made available under the terms and conditions of the BSD License\r
-# which accompanies this distribution.  The full text of the license may be found at\r
-# http://opensource.org/licenses/bsd-license.php\r
-#\r
-# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+# SPDX-License-Identifier: BSD-2-Clause-Patent\r
 #\r
 \r
 '''\r
@@ -135,7 +129,7 @@ class parser_lst(object):
                       tmp_dict[offset] = tmp_name\r
                       pcdname_num = int(pcdname_num_re.findall(t_name)[0],10)\r
                       uint = int(unit_num.findall(uint)[0],10)\r
-                      bit = uint / 8\r
+                      bit = uint // 8\r
                       for i in range(1, pcdname_num):\r
                         offset += bit\r
                         tmp_name = pcdname2_re.findall(t_name)[0] + '[%s]' % i\r