mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-05 04:26:43 +07:00
staging: typec: modify parameter of tcpci_irq
The parameter, dev_id, of tcpci_irq should be tcpci_chip. Remove definition of TCPC_CC_STATUS_DRPRST in tcpci.h. Fixes: 8f9439022648("staging: typec: handle vendor defined part and modify drp toggling flow") Signed-off-by: ShuFan Lee <shufan_lee@richtek.com> Reviewed-by: Li Jun <jun.li@nxp.com> Tested-by: Li Jun <jun.li@nxp.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
8f94390226
commit
7d287a5d5f
@ -451,9 +451,9 @@ EXPORT_SYMBOL_GPL(tcpci_irq);
|
|||||||
|
|
||||||
static irqreturn_t _tcpci_irq(int irq, void *dev_id)
|
static irqreturn_t _tcpci_irq(int irq, void *dev_id)
|
||||||
{
|
{
|
||||||
struct tcpci *tcpci = dev_id;
|
struct tcpci_chip *chip = dev_id;
|
||||||
|
|
||||||
return tcpci_irq(tcpci);
|
return tcpci_irq(chip->tcpci);
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct regmap_config tcpci_regmap_config = {
|
static const struct regmap_config tcpci_regmap_config = {
|
||||||
|
@ -59,7 +59,6 @@
|
|||||||
#define TCPC_POWER_CTRL_VCONN_ENABLE BIT(0)
|
#define TCPC_POWER_CTRL_VCONN_ENABLE BIT(0)
|
||||||
|
|
||||||
#define TCPC_CC_STATUS 0x1d
|
#define TCPC_CC_STATUS 0x1d
|
||||||
#define TCPC_CC_STATUS_DRPRST BIT(5)
|
|
||||||
#define TCPC_CC_STATUS_TERM BIT(4)
|
#define TCPC_CC_STATUS_TERM BIT(4)
|
||||||
#define TCPC_CC_STATUS_CC2_SHIFT 2
|
#define TCPC_CC_STATUS_CC2_SHIFT 2
|
||||||
#define TCPC_CC_STATUS_CC2_MASK 0x3
|
#define TCPC_CC_STATUS_CC2_MASK 0x3
|
||||||
|
Loading…
Reference in New Issue
Block a user