From: Andrew Murray Date: Thu, 29 Aug 2019 20:28:37 +0000 (-0600) Subject: coresight: etm4x: improve clarity of etm4_os_unlock comment X-Git-Tag: v5.4-rc1~133^2~34 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=89e89b05ef5b58ab33070cc5b59d74ca8cff86fe;p=platform%2Fkernel%2Flinux-rpi.git coresight: etm4x: improve clarity of etm4_os_unlock comment To improve clarity, let's update the comment for etm4_os_unlock to use the name of the register as per the ETM architecture specification. The existing comment is also misleading as it suggests any value written to TRCOSLAR unlocks the trace registers, however it must be '0' - let's also correct this. Signed-off-by: Andrew Murray Reviewed-by: Suzuki K Poulose Signed-off-by: Mathieu Poirier Link: https://lore.kernel.org/r/20190829202842.580-13-mathieu.poirier@linaro.org Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/hwtracing/coresight/coresight-etm4x.c b/drivers/hwtracing/coresight/coresight-etm4x.c index 615bdbf..a128b50 100644 --- a/drivers/hwtracing/coresight/coresight-etm4x.c +++ b/drivers/hwtracing/coresight/coresight-etm4x.c @@ -48,7 +48,7 @@ static enum cpuhp_state hp_online; static void etm4_os_unlock(struct etmv4_drvdata *drvdata) { - /* Writing any value to ETMOSLAR unlocks the trace registers */ + /* Writing 0 to TRCOSLAR unlocks the trace registers */ writel_relaxed(0x0, drvdata->base + TRCOSLAR); drvdata->os_unlock = true; isb();