summaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorGulsah Kose <gulsah.1004@gmail.com>2014-10-30 03:03:46 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-10-30 12:20:16 -0700
commit3fd511d98660cba235dfadf1f296a3246fbaea58 (patch)
tree7e795ebe795990d575a8a56eef34a58e3131582c /include/linux
parent04947c5be5ca3824586f94352293549b899b2d89 (diff)
staging: rtl8188eu: os_dep: Used min_t instead of min
This patch fixes this checkpatch.pl warning: WARNING: min() should probably be min_t(int, req->essid_len, IW_ESSID_MAX_SIZE) by using this coccinelle script: @r@ identifier i; expression e1, e2; type t1, t2; @@ t1 i = - min((t2)e1, e2); + min_t(t2, e1, e2); Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com> Reviewed-by: Daniel Baluta <daniel.baluta@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux')
0 files changed, 0 insertions, 0 deletions