summaryrefslogtreecommitdiffstats
path: root/drivers/clk/x86/clk-lpt.c
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2021-07-22 22:34:50 +0300
committerStephen Boyd <sboyd@kernel.org>2021-07-27 14:03:47 -0700
commitcf0a95659e659d36838e56cc439d3986dcb46870 (patch)
tree4e6fe01a89a4d2b4c5401edea5240dbbe3d8c4b9 /drivers/clk/x86/clk-lpt.c
parente73f0f0ee7541171d89f2e2491130c7771ba58d3 (diff)
downloadlinux-cf0a95659e659d36838e56cc439d3986dcb46870.tar.bz2
clk: x86: Rename clk-lpt to more specific clk-lpss-atom
The LPT stands for Lynxpoint PCH. However the driver is used on a few Intel Atom SoCs. Rename it to reflect this in a way how another clock driver, i.e. clk-pmc-atom, is called. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Link: https://lore.kernel.org/r/20210722193450.35321-1-andriy.shevchenko@linux.intel.com Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/x86/clk-lpt.c')
-rw-r--r--drivers/clk/x86/clk-lpt.c47
1 files changed, 0 insertions, 47 deletions
diff --git a/drivers/clk/x86/clk-lpt.c b/drivers/clk/x86/clk-lpt.c
deleted file mode 100644
index fbe9fd3ed948..000000000000
--- a/drivers/clk/x86/clk-lpt.c
+++ /dev/null
@@ -1,47 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0-only
-/*
- * Intel Low Power Subsystem clocks.
- *
- * Copyright (C) 2013, Intel Corporation
- * Authors: Mika Westerberg <mika.westerberg@linux.intel.com>
- * Heikki Krogerus <heikki.krogerus@linux.intel.com>
- */
-
-#include <linux/clk-provider.h>
-#include <linux/err.h>
-#include <linux/module.h>
-#include <linux/platform_data/x86/clk-lpss.h>
-#include <linux/platform_device.h>
-
-static int lpt_clk_probe(struct platform_device *pdev)
-{
- struct lpss_clk_data *drvdata;
- struct clk *clk;
-
- drvdata = devm_kzalloc(&pdev->dev, sizeof(*drvdata), GFP_KERNEL);
- if (!drvdata)
- return -ENOMEM;
-
- /* LPSS free running clock */
- drvdata->name = "lpss_clk";
- clk = clk_register_fixed_rate(&pdev->dev, drvdata->name, NULL,
- 0, 100000000);
- if (IS_ERR(clk))
- return PTR_ERR(clk);
-
- drvdata->clk = clk;
- platform_set_drvdata(pdev, drvdata);
- return 0;
-}
-
-static struct platform_driver lpt_clk_driver = {
- .driver = {
- .name = "clk-lpt",
- },
- .probe = lpt_clk_probe,
-};
-
-int __init lpt_clk_init(void)
-{
- return platform_driver_register(&lpt_clk_driver);
-}