extcon: palmas: Remove the mutually_exclusive array
authorChanwoo Choi <cw00.choi@samsung.com>
Thu, 11 Jun 2015 11:46:07 +0000 (20:46 +0900)
committerChanwoo Choi <cw00.choi@samsung.com>
Mon, 10 Aug 2015 02:48:55 +0000 (11:48 +0900)
This patch removes the mutually_exclusive array of extcon-palmas.c.
After used the unique id of each external connector on 2a9de9c0f08d
("extcon: Use the unique id for external connector instead of string"),
extcon driver can't directly handle the bit value indicating the external
connectors.

Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
drivers/extcon/extcon-palmas.c

index eebdf2a33bfe4b84e1fc1886e7222641f4a56122..8933e7e0d9da563fc2a0721bfefa8fb32bbcb40d 100644 (file)
@@ -35,8 +35,6 @@ static const unsigned int palmas_extcon_cable[] = {
        EXTCON_NONE,
 };
 
-static const int mutually_exclusive[] = {0x3, 0x0};
-
 static void palmas_usb_wakeup(struct palmas *palmas, int enable)
 {
        if (enable)
@@ -195,7 +193,6 @@ static int palmas_usb_probe(struct platform_device *pdev)
                dev_err(&pdev->dev, "failed to allocate extcon device\n");
                return -ENOMEM;
        }
-       palmas_usb->edev->mutually_exclusive = mutually_exclusive;
 
        status = devm_extcon_dev_register(&pdev->dev, palmas_usb->edev);
        if (status) {