#!/bin/bash # description: syscall top # args: [comm] [interval] n_args=0 for i in "$@" do if expr match "$i" "-" > /dev/null ; then break fi n_args=$(( $n_args + 1 )) done if [ "$n_args" -gt 2 ] ; then echo "usage: sctop-report [comm] [interval]" exit fi if [ "$n_args" -gt 1 ] ; then comm=$1 interval=$2 shift 2 elif [ "$n_args" -gt 0 ] ; then interval=$1 shift fi perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/sctop.py $comm $interval rowspan='2'>cgit logo index : kernel
Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/drivers/hwmon/ds1621.c
AgeCommit message (Expand)Author
2024-06-08hwmon: (ds1621) Remove use of i2c_match_id()Andrew Davis
2024-02-11hwmon: Remove I2C_CLASS_HWMON from drivers w/o detect() and address_listHeiner Kallweit
2023-06-08hwmon: Switch i2c drivers back to use .probe()Uwe Kleine-König
2022-12-04hwmon: use sysfs_emit() to instead of scnprintf()ye xingchen
2021-10-12hwmon: cleanup non-bool "valid" data fieldsPaul Fertser
2021-04-20hwmon: (ds1621) Use kobj_to_dev()Tian Tao
2020-09-23hwmon: use simple i2c probe functionStephen Kitt
2019-05-24treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 61Thomas Gleixner