#!/bin/sh # SPDX-License-Identifier: GPL-2.0 PARAM="-npro -kr -i8 -ts8 -sob -l80 -ss -ncs -cp1" RES=`indent --version | cut -d' ' -f3` if [ "$RES" = "" ]; then exit 1 fi V1=`echo $RES | cut -d'.' -f1` V2=`echo $RES | cut -d'.' -f2` V3=`echo $RES | cut -d'.' -f3` if [ $V1 -gt 2 ]; then PARAM="$PARAM -il0" elif [ $V1 -eq 2 ]; then if [ $V2 -gt 2 ]; then PARAM="$PARAM -il0" elif [ $V2 -eq 2 ]; then if [ $V3 -ge 10 ]; then PARAM="$PARAM -il0" fi fi fi indent $PARAM "$@"
summaryrefslogtreecommitdiff
path: root/drivers/net/wireless/intel/iwlwifi/dvm
AgeCommit message (Expand)Author
2020-05-08iwlwifi: remove outdated copyright print/module statementJohannes Berg
2020-05-08iwlwifi: remove antenna_coupling module parameterEmmanuel Grumbach
2020-04-24mac80211: populate debugfs only after cfg80211 initJohannes Berg
2020-01-31iwlwifi: use <linux/units.h> helpersAkinobu Mita
2020-01-27Merge tag 'wireless-drivers-next-2020-01-26' of git://git.kernel.org/pub/scm/...David S. Miller
2020-01-04iwlwifi: add device name to device_infoLuca Coelho
2019-12-23iwlwifi: pcie: allocate smaller dev_cmd for TX headersJohannes Berg
2019-11-20iwlwifi: check kasprintf() return valueJohannes Berg
2019-11-20iwlwifi: dvm: excessive if in rs_bt_update_lq()Denis Efremov
2019-10-04mac80211: simplify TX aggregation startJohannes Berg
2019-09-06iwlwifi: always access the trans configuration via transLuca Coelho
2019-09-06iwlwifi: separate elements from cfg that are needed by trans_allocLuca Coelho
2019-07-26iwlwifi: dvm: no need to check return value of debugfs_create functionsGreg Kroah-Hartman
2019-06-29iwlwifi: lib: Use struct_size() helperGustavo A. R. Silva
2019-06-17Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller
2019-06-14mac80211: call rate_control_send_low() internallyJohannes Berg
2019-06-05treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 323Thomas Gleixner
2019-06-05treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 322Thomas Gleixner