#!/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}" 9'/> Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/drivers/usb/typec/tcpm/tcpci.c
AgeCommit message (Expand)Author
2025-09-12usb: typec: tcpci: add wakeup supportXu Yang
2025-04-11usb: typec: tcpci: add regulator supportMichael Grzeschik
2025-01-17usb: typec: tcpci: Prevent Sink disconnection before vPpsShutdown in SPR PPSKyle Tso
2025-01-13Merge 6.13-rc7 into usb-nextGreg Kroah-Hartman
2024-12-23usb: typec: tcpci: fix NULL pointer issue on shared irq caseXu Yang
2024-12-23usb: typec: tcpci: set local CC to Rd only when cc1/cc2 status is RpXu Yang
2024-09-11usb: typec: tcpci: support edge irqEmanuele Ghidoli
2024-08-12Merge 6.11-rc3 into usb-nextGreg Kroah-Hartman
2024-08-07usb: typec: tcpci: use GENMASK() for TCPC_TRANSMIT register fieldsAndré Draszik
2024-08-07usb: typec: tcpci: use GENMASK() for TCPC_MSG_HDR_INFO_REVAndré Draszik
2024-08-07usb: typec: tcpci: use GENMASK() for TCPC_ROLE_CTRL_RP_VALAndré Draszik
2024-08-07usb: typec: tcpci: use GENMASK() for TCPC_ROLE_CTRL_CC[12]André Draszik
2024-08-07usb: typec: tcpci: use GENMASK() for TCPC_CC_STATUS_CC[12]André Draszik
2024-07-31usb: typec: tcpci: Fix error code in tcpci_check_std_output_cap()Dan Carpenter
2024-07-10usb: typec: Drop explicit initialization of struct i2c_device_id::driver_data...Uwe Kleine-König
2024-07-03usb: typec: tcpci: add support to set connector orientationMarco Felsch
2024-03-05usb: typec: tcpci: add generic tcpci fallback compatibleMarco Felsch
2024-01-27usb: typec: tcpci: add attempt_vconn_swap_discovery callbackRD Babiera
2024-01-27usb: typec: tcpci: add tcpm_transmit_type to tcpm_pd_receiveRD Babiera
2024-01-27usb: typec: tcpci: add cable_comm_capable attributeRD Babiera
2023-08-22usb: typec: tcpci: clear the fault status bitMarco Felsch
2023-05-29usb: Switch i2c drivers back to use .probe()Uwe Kleine-König
2023-01-17usb: typec: tcpci: Add callback for evaluating contaminant presenceBadhri Jagan Sridharan
2023-01-17usb: typec: tcpci: Request IRQ with IRQF_SHAREDXu Yang
2022-11-22usb: typec: tcpm/tcpci: Convert to i2c's .probe_new()Uwe Kleine-König
2022-11-22usb: typec: tcpci: fix of node refcount leak in tcpci_register_port()Yang Yingliang
2022-10-07Merge tag 'usb-6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/greg...Linus Torvalds