Nathan Chancellor 5852357d55 cdx: Fix cdx_mmap_resource() after constifying attr in ->mmap()
Commit 94a20fb9af16 ("sysfs: treewide: constify attribute callback of
bin_attribute::mmap()") missed updating the attr parameter of
cdx_mmap_resource(), resulting in a build failure.

  drivers/cdx/cdx.c: In function 'cdx_create_res_attr':
  drivers/cdx/cdx.c:773:24: error: assignment to 'int (*)(struct file *, struct kobject *, const struct bin_attribute *, struct vm_area_struct *)' from incompatible pointer type 'int (*)(struct file *, struct kobject *, struct bin_attribute *, struct vm_area_struct *)' [-Wincompatible-pointer-types]
    773 |         res_attr->mmap = cdx_mmap_resource;
        |                        ^

Update cdx_mmap_resource() to match, resolving the build failure.

Fixes: 94a20fb9af16 ("sysfs: treewide: constify attribute callback of bin_attribute::mmap()")
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Tested-by: Thorsten Leemhuis <linux@leemhuis.info>
Reviewed-by: Thomas Weißschuu <linux@weissschuh.net>
Link: https://lore.kernel.org/r/20241107-sysfs-const-mmap-fix-cdx-v1-1-2ed9b7cd5f8b@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2024-11-10 10:53:21 +01:00
..
2024-10-18 15:53:00 -07:00
2024-09-27 08:48:37 -07:00
2024-10-29 00:46:20 +02:00
2024-09-17 15:27:01 +02:00
2024-09-18 10:49:45 +02:00
2024-11-03 10:15:50 -10:00
2024-09-19 10:18:15 +02:00
2024-11-01 07:54:11 -10:00
2024-10-24 16:31:58 -07:00
2024-09-19 10:18:15 +02:00
2024-10-05 10:31:04 -07:00
2024-11-03 08:35:29 -10:00
2024-10-27 08:29:36 -10:00
2024-09-29 09:22:34 -07:00
2024-10-11 11:23:21 -07:00
2024-09-26 08:43:17 -07:00
2024-11-01 13:41:55 -10:00
2024-09-26 12:00:25 -07:00
2024-10-11 10:03:13 +00:00
2024-10-19 12:52:19 -07:00
2024-09-09 12:22:06 +02:00
2024-10-30 08:16:23 -10:00
2024-10-07 11:33:26 -07:00
2024-10-07 11:33:26 -07:00
2024-10-07 11:33:26 -07:00
2024-09-04 17:24:58 -05:00