On Thu, May 19, 2022 at 08:25:01PM +0300, Uri Arev wrote:
This simple patch fixes a checkpatch.pl warning in `fbtft/fbtft-core.c`.
Reported by Checkpatch: WARNING: struct fb_ops should normally be const
...
- fbops = devm_kzalloc(dev, sizeof(struct fb_ops), GFP_KERNEL);
- const fbops = devm_kzalloc(dev, sizeof(struct fb_ops), GFP_KERNEL);
Why?