#!/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}" ge='this.form.submit();'> Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/Documentation/w1
AgeCommit message (Expand)Author
2020-05-15w1_therm: adding bulk read support to trigger multiple conversion on busAkira Shimahara
2019-12-30docs: w1: Fix a typo in omap-hdq.rstMasanari Iida
2019-10-18docs: w1: Fix SPDX-License-Identifier syntaxJonathan Neuschäfer
2019-07-31docs: w1: convert to ReST and add to the kAPI group of docsMauro Carvalho Chehab
2019-07-15docs: driver-api: add a series of orphaned documentsMauro Carvalho Chehab
2018-09-09Drop all 00-INDEX files from Documentation/Henrik Austad
2018-07-07w1: fix w1_ds2438 documentationMariusz Bialonczyk
2018-01-31Merge tag 'docs-4.16' of git://git.lwn.net/linuxLinus Torvalds
2017-12-21Fixed typo in onewire generic docGergo Huszty
2017-12-08w1: w1-gpio: Convert to use GPIO descriptorsLinus Walleij
2017-10-04add w1_ds28e17 driver for the DS28E17 Onewire to I2C master bridgeJan Kandziora
2017-03-17w1: add documentation for w1_ds2438Mariusz Bialonczyk
2017-03-17w1: add missing DS2413 documentationMariusz Bialonczyk
2016-05-01w1: add ability to set (SRAM) and store (EEPROM) configuration for temp senso...Ben Sen
2015-10-05w1: masters: omap_hdq: add support for 1-wire modeVignesh R
2015-05-24w1: Add support for DS28EA00 sequence to w1-thermMatt Campbell
2015-05-24w1: introduce an ability to specify microseconds bus scanning intervalsDmitry Khromov
2014-06-19w1: new w1_ds2406 driverScott Alfter
2014-05-27w1: optional bundling of netlink kernel repliesDavid Fries
2014-02-18Merge 3.14-rc3 into char-misc-nextGreg Kroah-Hartman
2014-02-10Documentation/: update 00-INDEX filesHenrik Austad
2014-02-07w1: format for DocBook and fixesDavid Fries
2014-02-07w1: ds2490 fix and enable hardware searchDavid Fries
2013-07-04Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jik...Linus Torvalds
2013-06-03w1: add family based automatic module loadingAlexander Stein
2013-05-28doc: fix misspellings with 'codespell' toolAnatol Pomozov
2013-02-18w1: w1_therm: Add force-pullup option for "broken" sensorsMichael Arndt
2012-08-161-Wire: Add support for the maxim ds1825 temperature sensorRaphael Assenat
2012-06-13w1: Add 1-wire slave device driver for DS28E04-100Markus Franke