diff options
author | Bjoern A. Zeeb <bz@FreeBSD.org> | 2024-12-19 23:08:32 +0000 |
---|---|---|
committer | Bjoern A. Zeeb <bz@FreeBSD.org> | 2024-12-20 07:09:24 +0000 |
commit | 5d09d1070737c43738e433b547af1a90c0f10bf1 (patch) | |
tree | 0791f9a8e1d7c0b0121687dffb98a8425ecac673 | |
parent | c4ca1d214f9a3d20e9381233314a57526ac9b515 (diff) |
iwlwifi: add missing blank, unwrap line
The original commit was missing a space between two words due to
uncareful string line wrapping; let the string run beyond the 80 char
limit in order to also make it grep-able [1].
Reported by: jrtc27, Chris Torek (chris.torek gmail.com)
Suggested by: emaste, imp [1]
Sponsored by: The FreeBSD Foundation
Fixes: 87e140a5c6f89 avoid (hard) hang on loading module
MFC after: 3 days
X-MFC with: 87e140a5c6f89eea7ea6320d1ae34566492abfc0
Reviewed by: emaste
Differential Revision: https://reviews.freebsd.org/D48155
-rw-r--r-- | sys/contrib/dev/iwlwifi/iwl-drv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/contrib/dev/iwlwifi/iwl-drv.c b/sys/contrib/dev/iwlwifi/iwl-drv.c index 61e5c064de80..b99204d87283 100644 --- a/sys/contrib/dev/iwlwifi/iwl-drv.c +++ b/sys/contrib/dev/iwlwifi/iwl-drv.c @@ -1760,8 +1760,8 @@ static void iwl_req_fw_callback(const struct firmware *ucode_raw, void *context) * Given this is request_module_nowait() we can simply skip it. */ if (bootverbose) - printf("%s: module '%s' not yet available; will be" - "initialized in a moment\n", __func__, op->name); + printf("%s: module '%s' not yet available; will be initialized in a moment\n", + __func__, op->name); #endif } mutex_unlock(&iwlwifi_opmode_table_mtx); |