mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
wlan-ng/prism2mib:checkpatch: Fix string split
This patch fixes a warning of checkpatch about string splitting. Signed-off-by: Johannes Stadlinger <Johannes.Stadlinger@fau.de> Signed-off-by: Maximilian Eschenbacher <maximilian@eschenbacher.email> CC: linux-kernel@i4.cs.fau.de Reviewed-by: Josh Triplett <josh@joshtriplett.org> CC: Vitaly Osipov <vitaly.osipov@gmail.com> CC: Himangi Saraogi <himangi774@gmail.com> CC: devel@driverdev.osuosl.org CC: linux-kernel@vger.kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
5d9c8d51c8
commit
5a69d9212d
1 changed files with 2 additions and 2 deletions
|
@ -672,8 +672,8 @@ static int prism2mib_fragmentationthreshold(struct mibrec *mib,
|
|||
|
||||
if (!isget)
|
||||
if ((*uint32) % 2) {
|
||||
netdev_warn(wlandev->netdev, "Attempt to set odd number "
|
||||
"FragmentationThreshold\n");
|
||||
netdev_warn(wlandev->netdev,
|
||||
"Attempt to set odd number FragmentationThreshold\n");
|
||||
msg->resultcode.data =
|
||||
P80211ENUM_resultcode_not_supported;
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue