From patchwork Thu Dec 14 15:49:03 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christian Marangi X-Patchwork-Id: 13493768 Received: from mail-wm1-f51.google.com (mail-wm1-f51.google.com [209.85.128.51]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 55D11697B7; Thu, 14 Dec 2023 22:38:35 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=gmail.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=gmail.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=gmail.com header.i=@gmail.com header.b="c89FoXZc" Received: by mail-wm1-f51.google.com with SMTP id 5b1f17b1804b1-40c69403b3eso498495e9.3; Thu, 14 Dec 2023 14:38:35 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1702593513; x=1703198313; darn=vger.kernel.org; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:from:to:cc:subject:date:message-id:reply-to; bh=qO4xPzkioMy0PzT4rWB2kh7NbLXNeuluzCFbqlXn2HQ=; b=c89FoXZcyfqrWfKDOGF7TUCkQnLCe/FVUgos/W63Ss4G8eN9oPk2dbGai5CiERa6nz 4CMqELW8zbkJ9Z0JUxqJTOOfcw9h6cFi9fQrePNOsXY2NwsxIMYCG+wkZzMyWtO2aPuP NGZVKJNTQ0/UQxsnmJFzPgNLxV9bd39YlmgT44qIDu7uEGlHU2o7ScT3fHDY3JiD5mUQ 2XGc1ttKGx4KpnsLoEKtYifyCT6ra4G7WJbPG8JX0GWVVLNgGeR7gSiGmQY78oZapshd wrsXhNW0usNH4672bO7a0IJSRG4tiiHeOkrvhHH7yCZSQmjSt0+5HEG250iq+65Q5cZb MnZw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1702593513; x=1703198313; 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=qO4xPzkioMy0PzT4rWB2kh7NbLXNeuluzCFbqlXn2HQ=; b=YZc+pzpPhAQSCDmg9soF7qEB3HBbSttQplYskn0+diE1egz8OXRZpSlGpXZL1mfvid 7f98lCBPH72nbi1u/J28VS/5jSCb+EbK8PzT/1q+TZPkBcsJFhadLO0Ck2J4taBCmKI2 w+Jhl8s5FyHPcs1uUUZOnL9hKhfAF/7q3Wk4m5VokKzdDT/33x8N73k4MO88vm6OhliN EpFgxYFFbBxUNqmnOtQMTmYWWT2RXObqsc0AUvz2iyakHqMPepIAtRyJ67TUkcuIKLGl 0xdysN/d5943FhmCyEu27uCxRfsznMZm7fLwR1zzMOb86Utv0BqCBzTP5JIKYgC+pAzI 2SCg== X-Gm-Message-State: AOJu0YyxhDGb3HuWC8Ao0k46FdnmVrXKt9XWRQ+iktVOH32pD45YN+5o qNHJwcIBxzmw1079mFSc2JU= X-Google-Smtp-Source: AGHT+IFiBqXxM3+R4R4MdCuFdA9ekXm8MpK05BiJjz3ux0xXiPOWuVpfjSQ8at9eseLTPvOjBdNKoQ== X-Received: by 2002:a05:600c:1f1a:b0:40c:31f1:145c with SMTP id bd26-20020a05600c1f1a00b0040c31f1145cmr5011841wmb.169.1702593512901; Thu, 14 Dec 2023 14:38:32 -0800 (PST) Received: from localhost.localdomain (93-34-89-13.ip49.fastwebnet.it. [93.34.89.13]) by smtp.googlemail.com with ESMTPSA id n41-20020a05600c3ba900b0040c61ee0816sm54746wms.0.2023.12.14.14.38.31 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 14 Dec 2023 14:38:32 -0800 (PST) From: Christian Marangi To: Andrew Lunn , Heiner Kallweit , Russell King , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , netdev@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Christian Marangi Subject: [net-next PATCH v2 0/3] net: add define to describe link speed modes Date: Thu, 14 Dec 2023 16:49:03 +0100 Message-Id: <20231214154906.29436-1-ansuelsmth@gmail.com> X-Mailer: git-send-email 2.40.1 Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Patchwork-Delegate: kuba@kernel.org This is a simple series to add a way to describe link speed modes number. An additional helper is added and the phy_speeds is better documented and expanded to return just the modes number. This is also needed in the upcoming changes in the netdev trigger for LEDs where phy_speeds functions is used to declare a more compact array instead of using a "big enough" approach. Changes v2: - Drop stupid enum-define hack - Introduce helper function - Document phy_speeds function - Extent phy_speeds function Christian Marangi (3): net: phy: refactor and better document phy_speeds function net: phy: add simple helper to return count of supported speeds net: phy: led: dynamically allocate speed modes array drivers/net/phy/phy-core.c | 50 +++++++++++++++++++++++++++--- drivers/net/phy/phy.c | 12 +++++++ drivers/net/phy/phy_led_triggers.c | 16 ++++++++-- 3 files changed, 70 insertions(+), 8 deletions(-)