#!/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}" 44e4'/> Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/drivers/thermal/qoriq_thermal.c
AgeCommit message (Expand)Author
2020-05-29thermal: qoriq: Update the settings for TMUv2Yuantian Tang
2020-03-20thermal: qoriq: Sort includes alphabeticallyAnson Huang
2020-03-20thermal: qoriq: Use devm_add_action_or_reset() to handle all cleanupsAnson Huang
2020-01-27thermal: qoriq: Add hwmon supportAndrey Smirnov
2020-01-27thermal: qoriq: Do not report invalid temperature readingAndrey Smirnov
2020-01-27thermal: qoriq: Enable all sensors before registering themAndrey Smirnov
2020-01-27thermal: qoriq: Convert driver to use regmap APIAndrey Smirnov
2020-01-27thermal: qoriq: Drop unnecessary drvdata cleanupAndrey Smirnov
2020-01-27thermal: qoriq: Pass data to qoriq_tmu_calibration() directlyAndrey Smirnov
2020-01-27thermal: qoriq: Pass data to qoriq_tmu_register_tmu_zone() directlyAndrey Smirnov
2020-01-27thermal: qoriq: Embed per-sensor data into struct qoriq_tmu_dataAndrey Smirnov
2020-01-27thermal: qoriq: Add local struct qoriq_sensor pointerAndrey Smirnov
2020-01-27thermal: qoriq: Don't store struct thermal_zone_device referenceAndrey Smirnov
2020-01-27thermal: qoriq: Add local struct device pointerAndrey Smirnov
2019-11-07thermal: qoriq: add thermal monitor unit version 2 supportYuantian Tang
2019-08-28thermal: qoriq: Use __maybe_unused instead of #if CONFIG_PM_SLEEPAnson Huang
2019-08-28thermal: qoriq: Use devm_platform_ioremap_resource() instead of of_iomap()Anson Huang
2019-08-28thermal: qoriq: Fix error path of calling qoriq_tmu_register_tmu_zone failAnson Huang
2019-08-28thermal: qoriq: Add clock operationsAnson Huang
2019-05-14thermal: qoriq: Remove unnecessary DT node is NULL checkAndrey Smirnov
2019-02-05thermal: qoriq: add multiple sensors supportYuantian Tang
2018-10-26Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/evalent...Linus Torvalds
2018-10-22thermal: qoriq: add i.mx8mq supportAnson Huang
2018-10-22thermal: Convert to using %pOFn instead of device_node.nameRob Herring
2018-08-20thermal: qoriq: Switch to SPDX identifierFabio Estevam
2018-08-20thermal: qoriq: Simplify the 'site' variable assignmentFabio Estevam
2018-08-20thermal: qoriq: Use devm_thermal_zone_of_sensor_register()Fabio Estevam