git: 5d09d1070737 - main - iwlwifi: add missing blank, unwrap line

From: Bjoern A. Zeeb <bz_at_FreeBSD.org>
Date: Fri, 20 Dec 2024 07:10:49 UTC
The branch main has been updated by bz:

URL: https://cgit.FreeBSD.org/src/commit/?id=5d09d1070737c43738e433b547af1a90c0f10bf1

commit 5d09d1070737c43738e433b547af1a90c0f10bf1
Author:     Bjoern A. Zeeb <bz@FreeBSD.org>
AuthorDate: 2024-12-19 23:08:32 +0000
Commit:     Bjoern A. Zeeb <bz@FreeBSD.org>
CommitDate: 2024-12-20 07:09:24 +0000

    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
---
 sys/contrib/dev/iwlwifi/iwl-drv.c | 4 ++--
 1 file 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);