Thread (28 messages) 28 messages, 5 authors, 2023-07-06

Re: [PATCH V5 4/9] wifi: mac80211: Add support for ACPI WBRF

From: Andrew Lunn <andrew@lunn.ch>
Date: 2023-07-01 01:02:46
Also in: amd-gfx, dri-devel, linux-acpi, linux-wireless, lkml

+static void get_chan_freq_boundary(u32 center_freq,
+				   u32 bandwidth,
+				   u64 *start,
+				   u64 *end)
+{
+	bandwidth = MHZ_TO_KHZ(bandwidth);
+	center_freq = MHZ_TO_KHZ(center_freq);
+
+	*start = center_freq - bandwidth / 2;
+	*end = center_freq + bandwidth / 2;
+
+	/* Frequency in HZ is expected */
+	*start = KHZ_TO_HZ(*start);
+	*end = KHZ_TO_HZ(*end);
+}
This seems pretty generic, so maybe it should be moved into the shared
code? It can then become a NOP when the functionality if disabled.

      Andrew
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help