From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 6D49F45538; Mon, 1 Jul 2024 19:45:57 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3C7204014F; Mon, 1 Jul 2024 19:45:57 +0200 (CEST) Received: from mail-pg1-f182.google.com (mail-pg1-f182.google.com [209.85.215.182]) by mails.dpdk.org (Postfix) with ESMTP id 30AEA400EF for ; Mon, 1 Jul 2024 19:45:56 +0200 (CEST) Received: by mail-pg1-f182.google.com with SMTP id 41be03b00d2f7-7180e5f735bso1877337a12.0 for ; Mon, 01 Jul 2024 10:45:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20230601.gappssmtp.com; s=20230601; t=1719855955; x=1720460755; darn=dpdk.org; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:from:to:cc:subject:date:message-id:reply-to; bh=Igb+PGaSHWVY4LxtisAA29kVpF35fb9ZRr9BI8hfYdo=; b=hRTo0jSzOIJvhZg/RGOVybLzIWSPU0wW/lve9FdpyfxQ+m0s/NAP7TGNF1yAcPY+Wf tz/2r6SzvHTnaFQ+2etosKfTYupQhNBcbSvVI0kqvHlQgccKrT9j2gRZDvGt+hqBbGvn qkl7fnL0eS4vxekxb0OTOCU9cTj6FJfpDL0GPLaaDAGaI4RgokzR8p4DcgHGGRjYOyGU 9qSCDUFZx5nf1OrlyQF2LAKu1YDCmCxvYb01NjYz7uBh7wp5CZNtTKPAyHqVVFN3e86E blg0VW3ncFSaanRyXEVetJJUz8aNhB/zCGrLWLe80CMz1qWsHLTUG/s/+f9wh2TVpd0K GP2Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1719855955; x=1720460755; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=Igb+PGaSHWVY4LxtisAA29kVpF35fb9ZRr9BI8hfYdo=; b=aGJw++j+xcM0j8JGOlLZ9dVAm7ttJeioqVDU380pTlWwqk1fn8xc3XXGtrdnqBQH16 a4L/438U/wfXFY5Bb9O828llkLh7Q6TVMNpmsFc766LpH6v070sjaKc1NWEuCaiVmGjW Q8XnOm+b1I1p1NvhoF3F1Zcw+Cqo68VgD3vB5GYxdKSIpOPNyDbZZtenOmf9CtnF/VYQ BEst0ip7mva387C/sT08Mg2oK9T/Z8Zg2+r12LAKN9cEs7voVjhtPE22vc7lF8LT/xqx 73MqF0wOjqV/D9Sbv92P5a5L0Okz2UfWvdTHxFGrs18aIIFo997wSfazSHxJLu9xNGwp VIKQ== X-Gm-Message-State: AOJu0Yy/ohP/7trDEYDpDPuC9bsk7g2d1l6TQQdN5vsJEmYj5yVYvjGY LvlWsdpGteRo2xDYvLlfOkkoXdzShj5azuzlPGsPSNwF7e59Upta/7Si/wt88Jiy3UJEgkxxtzk E3nc= X-Google-Smtp-Source: AGHT+IFozQe6CE+Ir50+IKnkwvzlD2m3hogJ/wYZ//mlsaJb8flRlglOevxZ5YLmYnycNOUgqiktRA== X-Received: by 2002:a05:6a20:9143:b0:1bd:1d5f:35be with SMTP id adf61e73a8af0-1bef6137cb9mr11050840637.11.1719855954913; Mon, 01 Jul 2024 10:45:54 -0700 (PDT) Received: from hermes.local (204-195-96-226.wavecable.com. [204.195.96.226]) by smtp.gmail.com with ESMTPSA id d2e1a72fcca58-70804a96ac5sm6784717b3a.211.2024.07.01.10.45.54 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 01 Jul 2024 10:45:54 -0700 (PDT) From: Stephen Hemminger To: dev@dpdk.org Cc: Stephen Hemminger , Robin Jarry , Radha Mohan Chintakuntla Subject: [PATCH] dpdk-devbind: fix indentation Date: Mon, 1 Jul 2024 10:45:44 -0700 Message-ID: <20240701174544.16967-1-stephen@networkplumber.org> X-Mailer: git-send-email 2.43.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org The python check tool (flake8) is picky about the indentation of continuation lines, and dpdk-devbind was not following standard. Error is: E127 continuation line over-indented for visual indent Fixes: 2ff801515e49 ("usertools/devbind: update octeontx2 DMA device") Signed-off-by: Stephen Hemminger --- usertools/dpdk-devbind.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/usertools/dpdk-devbind.py b/usertools/dpdk-devbind.py index a278f5e7f3..5dc42d8fe2 100755 --- a/usertools/dpdk-devbind.py +++ b/usertools/dpdk-devbind.py @@ -66,17 +66,17 @@ 'SVendor': None, 'SDevice': None} cnxk_sso = {'Class': '08', 'Vendor': '177d', 'Device': 'a0f9,a0fa', - 'SVendor': None, 'SDevice': None} + 'SVendor': None, 'SDevice': None} cnxk_npa = {'Class': '08', 'Vendor': '177d', 'Device': 'a0fb,a0fc', - 'SVendor': None, 'SDevice': None} + 'SVendor': None, 'SDevice': None} cn9k_ree = {'Class': '08', 'Vendor': '177d', 'Device': 'a0f4', - 'SVendor': None, 'SDevice': None} + 'SVendor': None, 'SDevice': None} virtio_blk = {'Class': '01', 'Vendor': "1af4", 'Device': '1001,1042', - 'SVendor': None, 'SDevice': None} + 'SVendor': None, 'SDevice': None} cnxk_ml = {'Class': '08', 'Vendor': '177d', 'Device': 'a092', - 'SVendor': None, 'SDevice': None} + 'SVendor': None, 'SDevice': None} network_devices = [network_class, cavium_pkx, avp_vnic, ifpga_class] baseband_devices = [acceleration_class] -- 2.43.0