mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-15 19:01:45 -04:00
regulatory: remove redundant isalpha() check
toupper() only modifies lower-case letters, so the isalpha() check is redundant; remove it. Acked-by: Luis R. Rodriguez <mcgrof@do-not-panic.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
@@ -1614,10 +1614,8 @@ static void reg_todo(struct work_struct *work)
|
||||
|
||||
static void queue_regulatory_request(struct regulatory_request *request)
|
||||
{
|
||||
if (isalpha(request->alpha2[0]))
|
||||
request->alpha2[0] = toupper(request->alpha2[0]);
|
||||
if (isalpha(request->alpha2[1]))
|
||||
request->alpha2[1] = toupper(request->alpha2[1]);
|
||||
request->alpha2[0] = toupper(request->alpha2[0]);
|
||||
request->alpha2[1] = toupper(request->alpha2[1]);
|
||||
|
||||
spin_lock(®_requests_lock);
|
||||
list_add_tail(&request->list, ®_requests_list);
|
||||
|
||||
Reference in New Issue
Block a user