Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 01b289a4 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "coresight: replace dev_info() with dev_dbg() from driver probe()"

parents 9a845af1 7adf07d2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
/* Copyright (c) 2013-2014, The Linux Foundation. All rights reserved.
/* Copyright (c) 2013-2015, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
@@ -1501,7 +1501,7 @@ static int cti_probe(struct platform_device *pdev)
		goto err;
	}

	dev_info(dev, "CTI initialized\n");
	dev_dbg(dev, "CTI initialized\n");
	return 0;
err:
	if (drvdata->cti_save && !drvdata->cti_hwclk)
+2 −2
Original line number Diff line number Diff line
/* Copyright (c) 2011-2014, The Linux Foundation. All rights reserved.
/* Copyright (c) 2011-2015, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
@@ -313,7 +313,7 @@ static int funnel_probe(struct platform_device *pdev)
		}
	}
out:
	dev_info(dev, "FUNNEL initialized\n");
	dev_dbg(dev, "FUNNEL initialized\n");
	return 0;
}

+1 −1
Original line number Diff line number Diff line
@@ -714,7 +714,7 @@ static int tpda_probe(struct platform_device *pdev)
	if (IS_ERR(drvdata->csdev))
		return PTR_ERR(drvdata->csdev);

	dev_info(drvdata->dev, "TPDA initialized\n");
	dev_dbg(drvdata->dev, "TPDA initialized\n");
	return 0;
}

+1 −1
Original line number Diff line number Diff line
@@ -3491,7 +3491,7 @@ static int tpdm_probe(struct platform_device *pdev)
	if (IS_ERR(drvdata->csdev))
		return PTR_ERR(drvdata->csdev);

	dev_info(drvdata->dev, "TPDM initialized\n");
	dev_dbg(drvdata->dev, "TPDM initialized\n");

	if (boot_enable)
		coresight_enable(drvdata->csdev);