Skip to content

Commit

Permalink
iwlwifi: add missing blank, unwrap line
Browse files Browse the repository at this point in the history
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:		87e140a avoid (hard) hang on loading module
MFC after:	3 days
X-MFC with:	87e140a
Reviewed by:	emaste
Differential Revision: https://reviews.freebsd.org/D48155
  • Loading branch information
Bjoern A. Zeeb authored and Bjoern A. Zeeb committed Dec 20, 2024
1 parent c4ca1d2 commit 5d09d10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sys/contrib/dev/iwlwifi/iwl-drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 5d09d10

Please sign in to comment.