#!/bin/sh # SPDX-License-Identifier: GPL-2.0 outfile="" now=`date +%s` while [ $# -gt 0 ] do case "$1" in -o) outfile="$2" shift 2;; -h) echo "usage: $0 [-o outfile] " exit 0;; *) break;; esac done if [ -z "$outfile" ] then outfile=`mktemp --tmpdir stackusage.$$.XXXX` fi KCFLAGS="${KCFLAGS} -fstack-usage" make "$@" # Prepend directory name to file names, remove column information, # make file:line/function/size/type properly tab-separated. find . -name '*.su' -newermt "@${now}" -print | \ xargs perl -MFile::Basename -pe \ '$d = dirname($ARGV); s#([^:]+:[0-9]+):[0-9]+:#$d/$1\t#;' | \ sort -k3,3nr > "${outfile}" echo "$0: output written to ${outfile}" h' onchange='this.form.submit();'> Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/sound/pci/cs46xx
AgeCommit message (Expand)Author
2018-09-04ALSA: cs46xx: Use SNDRV_PCM_INFO_SYNC_APPLPTR info flagTakashi Iwai
2018-07-16ALSA: cs46xx: remove redundant pointer 'ins'Colin Ian King
2018-06-12treewide: Use array_size() in vmalloc()Kees Cook
2018-06-12treewide: kmalloc() -> kmalloc_array()Kees Cook
2018-05-28sound: Use octal not symbolic permissionsJoe Perches
2018-04-27ALSA: cs46xx: fix spelling mistake: "amplifer" -> "amplifier"Colin Ian King
2017-08-12ALSA: cs46xx: make snd_pcm_hardware constBhumika Goyal
2017-06-09ALSA: cs46xx: Constify hw_constraintsTakashi Iwai
2017-05-25ALSA: cs46xx: Deliver indirect-PCM transfer errorTakashi Iwai
2017-05-21ALSA: cs46xx: constify snd_kcontrol_new structuresBhumika Goyal
2017-02-27scripts/spelling.txt: add "overwriten" pattern and fix typo instancesMasahiro Yamada
2017-01-26ALSA: cs46xx: constify snd_pcm_ops structuresBhumika Goyal
2017-01-12ALSA: pci: Constify snd_rawmidi_opsTakashi Iwai
2016-12-07ALSA: cs46xx: add a new lineDan Carpenter
2016-11-13ALSA: pci: don't opencode IS_REACHABLE()Fabian Frederick
2016-09-01ALSA: cs46xx: fix typo "seconadry" -> "secondary"Colin Ian King
2015-10-30ALSA: cs46xx: Fix suspend for all channelsOndrej Zary
2015-10-30ALSA: cs46xx: Fix Duplicate front for CS4294 and CS4298 codecsOndrej Zary
2015-05-29ALSA: cs46xx: Fix old ifdef CONFIG_PROC_FSTakashi Iwai