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:
Родитель
11cff96c06
Коммит
d4f2c8819a
|
@ -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);
|
||||
|
|
Загрузка…
Ссылка в новой задаче