mirror of https://gitee.com/openkylin/linux.git
staging/nvec: Remove double const qualifier
The SIMPLE_DEV_PM_OPS macro already uses the const qualifier, so there's no need to repeat it. Signed-off-by: Thierry Reding <treding@nvidia.com> Acked-by: Marc Dietrich <marvin24@gmx.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
7354a17509
commit
5d30566f73
|
@ -960,7 +960,7 @@ static int nvec_resume(struct device *dev)
|
|||
}
|
||||
#endif
|
||||
|
||||
static const SIMPLE_DEV_PM_OPS(nvec_pm_ops, nvec_suspend, nvec_resume);
|
||||
static SIMPLE_DEV_PM_OPS(nvec_pm_ops, nvec_suspend, nvec_resume);
|
||||
|
||||
/* Match table for of_platform binding */
|
||||
static const struct of_device_id nvidia_nvec_of_match[] = {
|
||||
|
|
Loading…
Reference in New Issue