Your message dated Sun, 09 Nov 2025 07:04:12 +0000
with message-id <[email protected]>
and subject line Bug#1119951: fixed in broadcom-sta 6.30.223.271-29
has caused the Debian Bug report #1119951,
regarding broadcom-sta-dkms: module fails to build for Linux 6.17
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
1119951: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1119951
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: broadcom-sta-dkms
Version: 6.30.223.271-28
Severity: serious
Tags: ftbfs patch
Justification: fails to build from source (but built successfully in the past)
X-Debbugs-Cc: [email protected], [email protected]
User: [email protected]
Usertags: amd64

Dear Maintainer,

   * What led up to the situation?
       Installation of kernel 6.17 blocked/failed on sid/forky due to broadcom-
sta-dkms.

   * What exactly did you do (or not do) that was effective (or
     ineffective)?
       Found necessary changes at
https://gitlab.archlinux.org/archlinux/packaging/packages/broadcom-wl-
dkms/-/blob/main/021-linux617.patch?ref_type=heads  Applied changes by hand to
(my) source and created debian patch.

   * What was the outcome of this action?
       Broadcom-sta-dkms builds.  Kernel installs.  Wireless functional.

   * What outcome did you expect instead?



-- System Information:
Debian Release: forky/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 6.17.6+deb14-amd64 (SMP w/4 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages broadcom-sta-dkms depends on:
ii  dkms  3.2.2-1

Versions of packages broadcom-sta-dkms recommends:
ii  wireless-tools  30~pre9-18+b1

broadcom-sta-dkms suggests no packages.

-- no debconf information

-- debsums errors found:
debsums: changed file 
/usr/src/broadcom-sta-6.30.223.271/src/wl/sys/wl_cfg80211_hybrid.c (from 
broadcom-sta-dkms package)
--- wl_cfg80211_hybrid.c_pre_linux_6_17 2025-11-02 11:42:32.573386634 -0600
+++ wl_cfg80211_hybrid.c        2025-11-02 12:29:45.026726601 -0600
@@ -67,7 +67,11 @@
 static s32 wl_cfg80211_scan(struct wiphy *wiphy, struct net_device *ndev,
            struct cfg80211_scan_request *request);
 #endif
-static s32 wl_cfg80211_set_wiphy_params(struct wiphy *wiphy, u32 changed);
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 17, 0)
+ static s32 wl_cfg80211_set_wiphy_params(struct wiphy *wiphy, s32 radio_idx, 
u32 changed);
+ #else
+ static s32 wl_cfg80211_set_wiphy_params(struct wiphy *wiphy, u32 changed);
+ #endif
 static s32 wl_cfg80211_join_ibss(struct wiphy *wiphy, struct net_device *dev,
            struct cfg80211_ibss_params *params);
 static s32 wl_cfg80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev);
@@ -85,8 +89,10 @@
 static int wl_cfg80211_connect(struct wiphy *wiphy, struct net_device *dev,
            struct cfg80211_connect_params *sme);
 static s32 wl_cfg80211_disconnect(struct wiphy *wiphy, struct net_device *dev, 
u16 reason_code);
-
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 8, 0)
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 17, 0)
+static s32 wl_cfg80211_set_tx_power(struct wiphy *wiphy, struct wireless_dev 
*wdev,
+           s32 radio_idx, enum nl80211_tx_power_setting type, s32 dbm);
+#elif LINUX_VERSION_CODE >= KERNEL_VERSION(3, 8, 0)
 static s32
 wl_cfg80211_set_tx_power(struct wiphy *wiphy, struct wireless_dev *wdev,
                          enum nl80211_tx_power_setting type, s32 mbm);
@@ -98,7 +104,10 @@
            enum tx_power_setting type, s32 mbm);
 #endif
 
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 14, 0)
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 17, 0)
+static s32 wl_cfg80211_get_tx_power(struct wiphy *wiphy, struct wireless_dev 
*wdev, s32 radio_idx,
+           u32 /*link_id*/, s32 *dbm);
+#elif LINUX_VERSION_CODE >= KERNEL_VERSION(6, 14, 0)
 static s32 wl_cfg80211_get_tx_power(struct wiphy *wiphy, struct wireless_dev 
*wdev, u32 /*link_id*/, s32 *dbm);
 #elif LINUX_VERSION_CODE >= KERNEL_VERSION(3, 8, 0)
 static s32 wl_cfg80211_get_tx_power(struct wiphy *wiphy, struct wireless_dev 
*wdev, s32 *dbm);
@@ -663,8 +672,11 @@
        }
        return err;
 }
-
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 17, 0)
+static s32 wl_cfg80211_set_wiphy_params(struct wiphy *wiphy, s32 radio_idx, 
u32 changed)
+#else
 static s32 wl_cfg80211_set_wiphy_params(struct wiphy *wiphy, u32 changed)
+#endif
 {
        struct wl_cfg80211_priv *wl = wiphy_to_wl(wiphy);
        struct net_device *ndev = wl_to_ndev(wl);
@@ -1101,8 +1113,10 @@
 
        return err;
 }
-
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 8, 0)
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 17, 0)
+static s32 wl_cfg80211_set_tx_power(struct wiphy *wiphy, struct wireless_dev 
*wdev,
+           s32 radio_idx, enum nl80211_tx_power_setting type, s32 mbm)
+#elif LINUX_VERSION_CODE >= KERNEL_VERSION(3, 8, 0)
 static s32
 wl_cfg80211_set_tx_power(struct wiphy *wiphy, struct wireless_dev *wdev,
                          enum nl80211_tx_power_setting type, s32 mbm)
@@ -1162,8 +1176,10 @@
 
        return err;
 }
-
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 14, 0)
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 17, 0)
+static s32 wl_cfg80211_get_tx_power(struct wiphy *wiphy, struct wireless_dev 
*wdev, s32 radio_idx,
+           u32 /*link_id*/, s32 *dbm)
+#elif LINUX_VERSION_CODE >= KERNEL_VERSION(6, 14, 0)
 static s32 wl_cfg80211_get_tx_power(struct wiphy *wiphy, struct wireless_dev 
*wdev, u32 /*link_id*/, s32 *dbm)
 #elif LINUX_VERSION_CODE >= KERNEL_VERSION(3, 8, 0)
 static s32 wl_cfg80211_get_tx_power(struct wiphy *wiphy, struct wireless_dev 
*wdev, s32 *dbm)

--- End Message ---
--- Begin Message ---
Source: broadcom-sta
Source-Version: 6.30.223.271-29
Done: Roger Shimizu <[email protected]>

We believe that the bug you reported is fixed in the latest version of
broadcom-sta, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Roger Shimizu <[email protected]> (supplier of updated broadcom-sta package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Sat, 08 Nov 2025 22:49:03 -0800
Source: broadcom-sta
Architecture: source
Version: 6.30.223.271-29
Distribution: unstable
Urgency: medium
Maintainer: Eduard Bloch <[email protected]>
Changed-By: Roger Shimizu <[email protected]>
Closes: 1106546 1119951
Changes:
 broadcom-sta (6.30.223.271-29) unstable; urgency=medium
 .
   [ Diego Escalante Urrelo ]
   * debian: Fix lintian --pedantic warnings.
   * debian: Upgrade to latest packaging standards.
   * debian/patches: Minor pq reformat noise.
   * debian/patches: Fix build for linux-6.17 (Closes: #1106546, #1119951).
Checksums-Sha1:
 0f26e282e16c6c1128b03cba05b8552454758473 2426 broadcom-sta_6.30.223.271-29.dsc
 98a0e0cb83027eab7e810d4bda196bd1daa56dfe 38704 
broadcom-sta_6.30.223.271-29.debian.tar.xz
 77f982a5f82d4026fc4959a46ffcf3b554ff64dd 6936 
broadcom-sta_6.30.223.271-29_source.buildinfo
Checksums-Sha256:
 71901ea3bea5c317756ef3608dc0caa7312ee9560945486d6c0682493b60c1c9 2426 
broadcom-sta_6.30.223.271-29.dsc
 ee63271d9d3d7dba41125fc9c2c24d050e5d5143014b7a22f7cbbeb7e8c0c21c 38704 
broadcom-sta_6.30.223.271-29.debian.tar.xz
 8e0bf0179dc5a35204848abec9fad40008e5352003fba06f7e3c3b9e6ba15d7a 6936 
broadcom-sta_6.30.223.271-29_source.buildinfo
Files:
 ec8db57533c9a5f50ef1459958543e41 2426 non-free/kernel optional 
broadcom-sta_6.30.223.271-29.dsc
 e39e22574f9f8ec1c5b62127ae412c32 38704 non-free/kernel optional 
broadcom-sta_6.30.223.271-29.debian.tar.xz
 0243be26d933aa63d1f8818ced0c881c 6936 non-free/kernel optional 
broadcom-sta_6.30.223.271-29_source.buildinfo

-----BEGIN PGP SIGNATURE-----

iQJEBAEBCgAuFiEECjKtvoA5m+cWOFnspHhrDacDNKgFAmkQOdsQHHJvc2hAZGVi
aWFuLm9yZwAKCRCkeGsNpwM0qJn1EACK+oUlaxlf6NdpY2weLFQpbKnlspk1TIG3
8YuPYzmVTZpulEVtR+pEbTYEyK1IYIoO1j5ZdhcJh8GPn+XYzGbY1y03smJI6yd6
K6TYFMB2DVlcEtrGwGI++VRAYhVAlCv5MuZOdza7oae8bxIhmnA5SEHUYw8Bu0Pd
VAFKbZSouTuAMNrjFwLIAMLGoNDiKDU3G7mtV1Voxa5q9c7eniTzqFTonWjJY/PZ
N8Mklat4A84Lam2/VDP7w0i4MMdgEqs3xkDmlEa5j9WWXYGhY9VantHuTYSK+ykV
4aRY8AIg/vHrPil7nRbhpv59P48FbOf1nj9Z0pEGNFAH7RmxNOzeJTlcWUGhRUfk
ZEAIVFBP6e3CXcbMccign5cXeCOfA494av3PwhdlMCu6d4Lje7Hlf6vAfBI5I1aK
X+k+WaiDUR4U3dOuUsZVlvHUAtxp7sKXhnkjXPQGHILyPnaYfRF9PNJzMLUdIvat
1GztqIF7l3+8bpqCLw57E22ROhtTLwLFFTiq/JKtBayIdNo7tDA/MHrHnO/PlWxp
xTobJQcAqh2PJ0kww/3LLS3thHXn9XJaDRAWYqDaurwJ32TE98FLteRkqGtRlyjL
B3Q4XqdTf1CNV4pa63LlcqG7S8at3u2IAU1Bf9U9eXKlj04f27aHiG0MmBUlHcXK
C54V73b6Yg==
=pUAy
-----END PGP SIGNATURE-----

Attachment: pgpClMDQqz6Lf.pgp
Description: PGP signature


--- End Message ---

Reply via email to