On Fri, Jul 18, 2025 at 02:32:46PM -0700, H. Peter Anvin wrote: > Replace uses of "__auto_type" in fs/proc/inode.c with "auto". > static ssize_t pde_read(struct proc_dir_entry *pde, struct file *file, char __user *buf, size_t count, loff_t *ppos) > { > - __auto_type read = pde->proc_ops->proc_read; > + auto read = pde->proc_ops->proc_read; Thanks! I'd prefer "const auto" but OK. Reviewed-by: Alexey Dobriyan <adobriyan@xxxxxxxxx>