mirror of
https://github.com/LiBwrt-op/openwrt-6.x.git
synced 2025-12-16 16:57:28 +00:00
Userspace handling is deprecated. Moved pcie wifi nodes out of dtsi as these devices differ in wifi chipsets and thus calibration size. Added compatible lines too. Removed pointless label_mac assignments as label-mac-device is already implemented. Signed-off-by: Rosen Penev <rosenp@gmail.com> Link: https://github.com/openwrt/openwrt/pull/20303 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
30 lines
542 B
Plaintext
30 lines
542 B
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
|
|
#include "ar7241.dtsi"
|
|
#include "ar724x_ubnt_xm.dtsi"
|
|
#include "ar724x_ubnt_xm_outdoor.dtsi"
|
|
|
|
/ {
|
|
compatible = "ubnt,bullet-m-ar7241", "ubnt,xm", "qca,ar7241";
|
|
model = "Ubiquiti Bullet M (XM AR7241)";
|
|
};
|
|
|
|
ð1 {
|
|
compatible = "syscon", "simple-mfd";
|
|
};
|
|
|
|
&art {
|
|
cal_art_1000: calibration@1000 {
|
|
reg = <0x1000 0xeb8>;
|
|
};
|
|
};
|
|
|
|
&pcie {
|
|
wifi: wifi@0,0 {
|
|
compatible = "pci168c,002a";
|
|
reg = <0x0000 0 0 0 0>;
|
|
nvmem-cells = <&cal_art_1000>;
|
|
nvmem-cell-names = "calibration";
|
|
};
|
|
};
|