Browse Source

soc: intel_adsp: tools: pylint compliance workaround

Disable Pylint compliance check warning `R0801:Similar lines`.

Signed-off-by: Dmitrii Golovanov <dmitrii.golovanov@intel.com>
pull/69687/head
Dmitrii Golovanov 1 year ago committed by Carles Cufi
parent
commit
b9a70e5ea2
  1. 2
      soc/intel/intel_adsp/tools/acetool.py
  2. 2
      soc/intel/intel_adsp/tools/cavstool.py
  3. 2
      soc/intel/intel_adsp/tools/remote-fw-service.py

2
soc/intel/intel_adsp/tools/acetool.py

@ -35,6 +35,8 @@ OUTBOX_OFFSET = (512 + (0 * 128)) * 1024 + 4096 @@ -35,6 +35,8 @@ OUTBOX_OFFSET = (512 + (0 * 128)) * 1024 + 4096
INBOX_OFFSET = (512 + (1 * 128)) * 1024
WINSTREAM_OFFSET = WINDOW_BASE + WINDOW_STRIDE*3
# pylint: disable=duplicate-code
# ADSPCS bits
CRST = 0
CSTALL = 8

2
soc/intel/intel_adsp/tools/cavstool.py

@ -31,6 +31,8 @@ OUTBOX_OFFSET = (512 + (0 * 128)) * 1024 + 4096 @@ -31,6 +31,8 @@ OUTBOX_OFFSET = (512 + (0 * 128)) * 1024 + 4096
INBOX_OFFSET = (512 + (1 * 128)) * 1024
WINSTREAM_OFFSET = (512 + (3 * 128)) * 1024
# pylint: disable=duplicate-code
# ADSPCS bits
CRST = 0
CSTALL = 8

2
soc/intel/intel_adsp/tools/remote-fw-service.py

@ -17,6 +17,8 @@ from urllib.parse import urlparse @@ -17,6 +17,8 @@ from urllib.parse import urlparse
# Global variable use to sync between log and request services.
runner = None
# pylint: disable=duplicate-code
# INADDR_ANY as default
HOST = ''
PORT_LOG = 9999

Loading…
Cancel
Save