Commit 8fa23514 authored by Dr. David Alan Gilbert's avatar Dr. David Alan Gilbert Committed by Greg Kroah-Hartman
Browse files

usb: typec: Remove unused ucsi_cci_str



ucsi_cci_str() last use was removed in 2019 by
commit 2ede5546 ("usb: typec: ucsi: Remove the old API")

Remove it.

Signed-off-by: default avatar"Dr. David Alan Gilbert" <linux@treblig.org>
Reviewed-by: default avatarHeikki Krogerus <heikki.krogerus@linux.intel.com>
Link: https://lore.kernel.org/r/20250609004319.209143-1-linux@treblig.org


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 47c83f95
Loading
Loading
Loading
Loading
+0 −17
Original line number Diff line number Diff line
@@ -33,23 +33,6 @@ const char *ucsi_cmd_str(u64 raw_cmd)
	return ucsi_cmd_strs[(cmd >= ARRAY_SIZE(ucsi_cmd_strs)) ? 0 : cmd];
}

const char *ucsi_cci_str(u32 cci)
{
	if (UCSI_CCI_CONNECTOR(cci)) {
		if (cci & UCSI_CCI_ACK_COMPLETE)
			return "Event pending (ACK completed)";
		if (cci & UCSI_CCI_COMMAND_COMPLETE)
			return "Event pending (command completed)";
		return "Connector Change";
	}
	if (cci & UCSI_CCI_ACK_COMPLETE)
		return "ACK completed";
	if (cci & UCSI_CCI_COMMAND_COMPLETE)
		return "Command completed";

	return "";
}

static const char * const ucsi_recipient_strs[] = {
	[UCSI_RECIPIENT_CON]		= "port",
	[UCSI_RECIPIENT_SOP]		= "partner",
+0 −1
Original line number Diff line number Diff line
@@ -10,7 +10,6 @@
#include <linux/usb/typec_altmode.h>

const char *ucsi_cmd_str(u64 raw_cmd);
const char *ucsi_cci_str(u32 cci);
const char *ucsi_recipient_str(u8 recipient);

DECLARE_EVENT_CLASS(ucsi_log_command,