| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * cs35l33.c -- CS35L33 ALSA SoC audio driver |
|---|
| 3 | 4 | * |
|---|
| 4 | 5 | * Copyright 2016 Cirrus Logic, Inc. |
|---|
| 5 | 6 | * |
|---|
| 6 | 7 | * Author: Paul Handrigan <paul.handrigan@cirrus.com> |
|---|
| 7 | | - * |
|---|
| 8 | | - * This program is free software; you can redistribute it and/or modify |
|---|
| 9 | | - * it under the terms of the GNU General Public License version 2 as |
|---|
| 10 | | - * published by the Free Software Foundation. |
|---|
| 11 | | - * |
|---|
| 12 | 8 | */ |
|---|
| 13 | 9 | #include <linux/module.h> |
|---|
| 14 | 10 | #include <linux/moduleparam.h> |
|---|
| .. | .. |
|---|
| 857 | 853 | .readable_reg = cs35l33_readable_register, |
|---|
| 858 | 854 | .writeable_reg = cs35l33_writeable_register, |
|---|
| 859 | 855 | .cache_type = REGCACHE_RBTREE, |
|---|
| 860 | | - .use_single_rw = true, |
|---|
| 856 | + .use_single_read = true, |
|---|
| 857 | + .use_single_write = true, |
|---|
| 861 | 858 | }; |
|---|
| 862 | 859 | |
|---|
| 863 | 860 | static int __maybe_unused cs35l33_runtime_resume(struct device *dev) |
|---|