#!/bin/bash # # gen_kselftest_tar # Generate kselftest tarball # Author: Shuah Khan # Copyright (C) 2015 Samsung Electronics Co., Ltd. # This software may be freely redistributed under the terms of the GNU # General Public License (GPLv2). # main main() { if [ "$#" -eq 0 ]; then echo "$0: Generating default compression gzip" copts="cvzf" ext=".tar.gz" else case "$1" in tar) copts="cvf" ext=".tar" ;; targz) copts="cvzf" ext=".tar.gz" ;; tarbz2) copts="cvjf" ext=".tar.bz2" ;; tarxz) copts="cvJf" ext=".tar.xz" ;; *) echo "Unknown tarball format $1" exit 1 ;; esac fi install_dir=./kselftest # Run install using INSTALL_KSFT_PATH override to generate install # directory ./kselftest_install.sh tar $copts kselftest${ext} $install_dir echo "Kselftest archive kselftest${ext} created!" # clean up install directory rm -rf kselftest } main "$@" type='hidden' name='id' value='c9194b99ae1825bdbafc701965442a47739ff0ad'/> net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/drivers/usb/host/fhci.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2017-01-31 13:05:15 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2017-01-31 13:05:15 -0800
commitc9194b99ae1825bdbafc701965442a47739ff0ad (patch)
tree76dbb4da02aea1ba8bd886b7b2c53fdb26202710 /drivers/usb/host/fhci.h
parent415f9b71d17d294c2f2075b3fc7717d72e5e48f9 (diff)
parent8e9faa15469ed7c7467423db4c62aeed3ff4cae3 (diff)
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid
Pull HID fixes from Jiri Kosina: - regression fix (sleeping while atomic) for cp2112, from Johan Hovold - regression fix for proximity handling under certain circumstances in Wacom driver, from Jason Gerecke - functional fix for Logitech Rumblepad 2, from Ardinartsev Nikita * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid: HID: cp2112: fix gpio-callback error handling HID: cp2112: fix sleep-while-atomic HID: hid-lg: Fix immediate disconnection of Logitech Rumblepad 2 HID: usbhid: Quirk a AMI virtual mouse and keyboard with ALWAYS_POLL HID: wacom: Fix poor prox handling in 'wacom_pl_irq'
Diffstat (limited to 'drivers/usb/host/fhci.h')