Skip to content

Commit 0e64350

Browse files
tchebbgregkh
authored andcommitted
usb: typec: wcove: fix "op-sink-microwatt" default that was in mW
commit 4c912bf ("usb: typec: wcove: Provide fwnode for the port") didn't convert this value from mW to uW when migrating to a new specification format like it should have. Fixes: 4c912bf ("usb: typec: wcove: Provide fwnode for the port") Cc: [email protected] Signed-off-by: Thomas Hebb <[email protected]> Reviewed-by: Heikki Krogerus <[email protected]> Reviewed-by: Guenter Roeck <[email protected]> Link: https://lore.kernel.org/r/d8be32512efd31995ad7d65b27df9d443131b07c.1579529334.git.tommyhebb@gmail.com Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent f5ae886 commit 0e64350

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/usb/typec/tcpm/wcove.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,7 @@ static const struct property_entry wcove_props[] = {
597597
PROPERTY_ENTRY_STRING("try-power-role", "sink"),
598598
PROPERTY_ENTRY_U32_ARRAY("source-pdos", src_pdo),
599599
PROPERTY_ENTRY_U32_ARRAY("sink-pdos", snk_pdo),
600-
PROPERTY_ENTRY_U32("op-sink-microwatt", 15000),
600+
PROPERTY_ENTRY_U32("op-sink-microwatt", 15000000),
601601
{ }
602602
};
603603

0 commit comments

Comments
 (0)