Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9c8a013a authored by Kishon Vijay Abraham I's avatar Kishon Vijay Abraham I Committed by Greg Kroah-Hartman
Browse files

extcon: add EXPORT_SYMBOL_GPL for exported functions



Added EXPORT_SYMBOL_GPL() for extcon_register_interest and
extcon_register_notifier in order to avoid undefined reference
error when building the consumer modules of extcon as _modules_.

Signed-off-by: default avatarKishon Vijay Abraham I <kishon@ti.com>
Signed-off-by: default avatarLokesh Vutla <lokeshvutla@ti.com>
Signed-off-by: default avatarChanwoo Choi <cw00.choi@samsung.com>
Signed-off-by: default avatarMyungjoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ea9dd9d6
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
@@ -481,6 +481,7 @@ int extcon_register_interest(struct extcon_specific_cable_nb *obj,
		return -ENODEV;
		return -ENODEV;
	}
	}
}
}
EXPORT_SYMBOL_GPL(extcon_register_interest);


/**
/**
 * extcon_unregister_interest() - Unregister the notifier registered by
 * extcon_unregister_interest() - Unregister the notifier registered by
@@ -495,6 +496,7 @@ int extcon_unregister_interest(struct extcon_specific_cable_nb *obj)


	return raw_notifier_chain_unregister(&obj->edev->nh, &obj->internal_nb);
	return raw_notifier_chain_unregister(&obj->edev->nh, &obj->internal_nb);
}
}
EXPORT_SYMBOL_GPL(extcon_unregister_interest);


/**
/**
 * extcon_register_notifier() - Register a notifiee to get notified by
 * extcon_register_notifier() - Register a notifiee to get notified by