forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-02-19 1c055e55a242a33e574e48be530e06770a210dcd
kernel/drivers/opp/ti-opp-supply.c
....@@ -1,6 +1,6 @@
11 // SPDX-License-Identifier: GPL-2.0
22 /*
3
- * Copyright (C) 2016-2017 Texas Instruments Incorporated - http://www.ti.com/
3
+ * Copyright (C) 2016-2017 Texas Instruments Incorporated - https://www.ti.com/
44 * Nishanth Menon <nm@ti.com>
55 * Dave Gerlach <d-gerlach@ti.com>
66 *
....@@ -90,7 +90,7 @@
9090 goto out_map;
9191 }
9292
93
- base = ioremap_nocache(res->start, resource_size(res));
93
+ base = ioremap(res->start, resource_size(res));
9494 if (!base) {
9595 dev_err(dev, "Unable to map Efuse registers\n");
9696 ret = -ENOMEM;
....@@ -417,7 +417,6 @@
417417 .probe = ti_opp_supply_probe,
418418 .driver = {
419419 .name = "ti_opp_supply",
420
- .owner = THIS_MODULE,
421420 .of_match_table = of_match_ptr(ti_opp_supply_of_match),
422421 },
423422 };