From 9fa1100c70567238a67da3acfbbb6d218305d0b2 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Fri, 26 Mar 2021 12:46:06 +0100 Subject: .bashrc: source cargo env if present --- .bashrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.bashrc b/.bashrc index f9fc24b..a59baa5 100644 --- a/.bashrc +++ b/.bashrc @@ -105,3 +105,8 @@ export PATH=$HOME/bin:$PATH if [ -f /etc/bash_completion ]; then . /etc/bash_completion fi + +CARGO_ENV="$HOME/.cargo/env" +if [ -f $CARGO_ENV ]; then + . $CARGO_ENV +fi -- cgit v1.2.3-54-g00ecf k rel='vcs-git' href='http:///git.distanz.ch/cgit.cgi/linux/net-next.git' title='net-next.git Git repository'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Thomson <Adam.Thomson.Opensource@diasemi.com>2016-05-10 16:11:06 +0100
committerMark Brown <broonie@kernel.org>2016-05-10 19:24:19 +0100
commit7e28fd469624fc41ec326a31abbc63a7afdd10f5 (patch)
tree00cbbdc6e6965d7279130826f8ad518bfdc77f7b
parentd575b0b0f01a805508c5cf48b540f004e9b5de07 (diff)
ASoC: da7213: Default PC counter to free-running when DAI disabled
Currently PC counter is always synchronised to DAI which means that when the DAI is disabled, features such as ALC calibration cannot be executed successfully. This patch makes sure that when the DAI is disabled, PC counter is set to free-running. Signed-off-by: Adam Thomson <Adam.Thomson.Opensource@diasemi.com> Signed-off-by: Mark Brown <broonie@kernel.org>