[PATCH 09/13] bus: auxiliary: increase AUXILIARY_NAME_SIZE

From: David Lechner
Date: Wed Jan 10 2024 - 14:53:05 EST


The auxiliary bus uses names in the form of "module_name.device_name"
for matching devices to drivers. Since the module name is the actual
module name, it can be quite long which doesn't leave enough room for
the device name.

This patch increases the size AUXILIARY_NAME_SIZE to 64 to allow for
both a ~32 character module name and a ~32 character device name.

Signed-off-by: David Lechner <dlechner@xxxxxxxxxxxx>
---
include/linux/mod_devicetable.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/mod_devicetable.h b/include/linux/mod_devicetable.h
index f458469c5ce5..4bd2d20067b6 100644
--- a/include/linux/mod_devicetable.h
+++ b/include/linux/mod_devicetable.h
@@ -861,7 +861,7 @@ struct mhi_device_id {
kernel_ulong_t driver_data;
};

-#define AUXILIARY_NAME_SIZE 32
+#define AUXILIARY_NAME_SIZE 64
#define AUXILIARY_MODULE_PREFIX "auxiliary:"

struct auxiliary_device_id {

--
2.43.0