| .. | .. |
|---|
| 5 | 5 | * Fabien Dessenne <fabien.dessenne@st.com> |
|---|
| 6 | 6 | * for STMicroelectronics. |
|---|
| 7 | 7 | */ |
|---|
| 8 | + |
|---|
| 9 | +#include <linux/moduleparam.h> |
|---|
| 8 | 10 | #include <linux/seq_file.h> |
|---|
| 11 | + |
|---|
| 12 | +#include <drm/drm_print.h> |
|---|
| 9 | 13 | |
|---|
| 10 | 14 | #include "sti_compositor.h" |
|---|
| 11 | 15 | #include "sti_mixer.h" |
|---|
| .. | .. |
|---|
| 174 | 178 | { "mixer_aux", mixer_dbg_show, 0, NULL }, |
|---|
| 175 | 179 | }; |
|---|
| 176 | 180 | |
|---|
| 177 | | -int sti_mixer_debugfs_init(struct sti_mixer *mixer, struct drm_minor *minor) |
|---|
| 181 | +void sti_mixer_debugfs_init(struct sti_mixer *mixer, struct drm_minor *minor) |
|---|
| 178 | 182 | { |
|---|
| 179 | 183 | unsigned int i; |
|---|
| 180 | 184 | struct drm_info_list *mixer_debugfs_files; |
|---|
| .. | .. |
|---|
| 190 | 194 | nb_files = ARRAY_SIZE(mixer1_debugfs_files); |
|---|
| 191 | 195 | break; |
|---|
| 192 | 196 | default: |
|---|
| 193 | | - return -EINVAL; |
|---|
| 197 | + return; |
|---|
| 194 | 198 | } |
|---|
| 195 | 199 | |
|---|
| 196 | 200 | for (i = 0; i < nb_files; i++) |
|---|
| 197 | 201 | mixer_debugfs_files[i].data = mixer; |
|---|
| 198 | 202 | |
|---|
| 199 | | - return drm_debugfs_create_files(mixer_debugfs_files, |
|---|
| 200 | | - nb_files, |
|---|
| 201 | | - minor->debugfs_root, minor); |
|---|
| 203 | + drm_debugfs_create_files(mixer_debugfs_files, |
|---|
| 204 | + nb_files, |
|---|
| 205 | + minor->debugfs_root, minor); |
|---|
| 202 | 206 | } |
|---|
| 203 | 207 | |
|---|
| 204 | 208 | void sti_mixer_set_background_status(struct sti_mixer *mixer, bool enable) |
|---|