platform/chrome: cros_ec_typec: Alter module name with hyphens
authorPrashant Malani <pmalani@chromium.org>
Wed, 28 Dec 2022 00:45:10 +0000 (00:45 +0000)
committerPrashant Malani <pmalani@chromium.org>
Mon, 9 Jan 2023 20:32:53 +0000 (20:32 +0000)
Change the Type-C module name from cros_ec_typec to cros-ec-typec. This
allows us to include more files in the same module (rather than relying
on the file name cros_ec_typec to also be the module name).

Signed-off-by: Prashant Malani <pmalani@chromium.org>
[pmalani: Fixed trivial conflict in Makefile]
Reviewed-by: Benson Leung <bleung@chromium.org>
Acked-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Link: https://lore.kernel.org/r/20221228004648.793339-8-pmalani@chromium.org
drivers/platform/chrome/Kconfig
drivers/platform/chrome/Makefile

index 0d272c8..7d82a09 100644 (file)
@@ -236,7 +236,7 @@ config CROS_EC_TYPEC
          information from the Chrome OS EC.
 
          To compile this driver as a module, choose M here: the module will be
-         called cros_ec_typec.
+         called cros-ec-typec.
 
 config CROS_HPS_I2C
        tristate "ChromeOS HPS device"
index 0f39ede..fc2335d 100644 (file)
@@ -17,7 +17,8 @@ obj-$(CONFIG_CROS_EC_RPMSG)           += cros_ec_rpmsg.o
 obj-$(CONFIG_CROS_EC_SPI)              += cros_ec_spi.o
 obj-$(CONFIG_CROS_EC_UART)             += cros_ec_uart.o
 cros_ec_lpcs-objs                      := cros_ec_lpc.o cros_ec_lpc_mec.o
-obj-$(CONFIG_CROS_EC_TYPEC)            += cros_ec_typec.o
+cros-ec-typec-objs                     := cros_ec_typec.o
+obj-$(CONFIG_CROS_EC_TYPEC)            += cros-ec-typec.o
 obj-$(CONFIG_CROS_EC_LPC)              += cros_ec_lpcs.o
 obj-$(CONFIG_CROS_EC_PROTO)            += cros_ec_proto.o cros_ec_trace.o
 obj-$(CONFIG_CROS_KBD_LED_BACKLIGHT)   += cros_kbd_led_backlight.o