| .. | .. |
|---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0 */ |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * OMAP Smartreflex Defines and Routines |
|---|
| 3 | 4 | * |
|---|
| .. | .. |
|---|
| 11 | 12 | * |
|---|
| 12 | 13 | * Copyright (C) 2007 Texas Instruments, Inc. |
|---|
| 13 | 14 | * Lesly A M <x0080970@ti.com> |
|---|
| 14 | | - * |
|---|
| 15 | | - * This program is free software; you can redistribute it and/or modify |
|---|
| 16 | | - * it under the terms of the GNU General Public License version 2 as |
|---|
| 17 | | - * published by the Free Software Foundation. |
|---|
| 18 | 15 | */ |
|---|
| 19 | 16 | |
|---|
| 20 | 17 | #ifndef __POWER_SMARTREFLEX_H |
|---|
| .. | .. |
|---|
| 306 | 303 | void omap_sr_disable(struct voltagedomain *voltdm); |
|---|
| 307 | 304 | void omap_sr_disable_reset_volt(struct voltagedomain *voltdm); |
|---|
| 308 | 305 | |
|---|
| 309 | | -/* API to register the pmic specific data with the smartreflex driver. */ |
|---|
| 310 | | -void omap_sr_register_pmic(struct omap_sr_pmic_data *pmic_data); |
|---|
| 311 | | - |
|---|
| 312 | 306 | /* Smartreflex driver hooks to be called from Smartreflex class driver */ |
|---|
| 313 | 307 | int sr_enable(struct omap_sr *sr, unsigned long volt); |
|---|
| 314 | 308 | void sr_disable(struct omap_sr *sr); |
|---|
| .. | .. |
|---|
| 323 | 317 | static inline void omap_sr_disable(struct voltagedomain *voltdm) {} |
|---|
| 324 | 318 | static inline void omap_sr_disable_reset_volt( |
|---|
| 325 | 319 | struct voltagedomain *voltdm) {} |
|---|
| 326 | | -static inline void omap_sr_register_pmic( |
|---|
| 327 | | - struct omap_sr_pmic_data *pmic_data) {} |
|---|
| 328 | 320 | #endif |
|---|
| 329 | 321 | #endif |
|---|