summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2026-01-13 13:22:03 +0300
committerAndy Shevchenko <andriy.shevchenko@linux.intel.com>2026-01-13 14:08:12 +0300
commit693142d4d761dd188ead136a7bca1e870a6af8cd (patch)
tree2a95f0ab8d840f1d9266f43c6f16fad671725ed5
parentc18bde85706ddbd7ad1e130498b26d33a3733371 (diff)
downloadlinux-693142d4d761dd188ead136a7bca1e870a6af8cd.tar.xz
auxdisplay: max6959: Replace slab.h with device/devres.h
Replace slab.h with device/devres.h as the devm_*() APIs are defined in the latter. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
-rw-r--r--drivers/auxdisplay/max6959.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/auxdisplay/max6959.c b/drivers/auxdisplay/max6959.c
index 962488197b9e..6bbc8d48fb1b 100644
--- a/drivers/auxdisplay/max6959.c
+++ b/drivers/auxdisplay/max6959.c
@@ -11,13 +11,13 @@
#include <linux/bitrev.h>
#include <linux/bits.h>
#include <linux/container_of.h>
+#include <linux/device/devres.h>
#include <linux/err.h>
#include <linux/i2c.h>
#include <linux/mod_devicetable.h>
#include <linux/module.h>
#include <linux/pm.h>
#include <linux/regmap.h>
-#include <linux/slab.h>
#include <linux/types.h>
#include <linux/workqueue.h>