linux-next: manual merge of the net-next tree with the net tree
Mark Brown <[email protected]>
| Newsgroups | org.kernel.vger.linux-next,org.kernel.vger.linux-kernel,org.kernel.vger.netdev |
|---|---|
| Message-ID | <[email protected]> |
Hi all,
Today's linux-next merge of the net-next tree got a conflict in:
drivers/dpll/dpll_core.c
between commit:
33f016b23a219 ("dpll: fix NULL deref in dpll_device_ops() during teardown race")
from the net tree and commit:
b1d0c412088e3 ("dpll: add STATE_CONNECTED_OVERRIDE pin capability")
from the net-next tree.
I fixed it up (see below) and can carry the fix as necessary. This
is now fixed as far as linux-next is concerned, but any non trivial
conflicts should be mentioned to your upstream maintainer when your tree
is submitted for merging. You may also want to consider cooperating
with the maintainer of the conflicting tree to minimise any particularly
complex conflicts.
diff --cc drivers/dpll/dpll_core.c
index a320eeb829ad2,245f625f4b3b4..0000000000000
--- a/drivers/dpll/dpll_core.c
+++ b/drivers/dpll/dpll_core.c
@@@ -882,7 -881,14 +882,11 @@@ dpll_pin_register(struct dpll_device *d
if (WARN_ON(!ops) ||
WARN_ON(!ops->state_on_dpll_get) ||
WARN_ON(!ops->direction_get) ||
- WARN_ON(ops->supported_ffo && !ops->ffo_get))
- WARN_ON(ops->measured_freq_get &&
- (!dpll_device_ops(dpll)->freq_monitor_get ||
- !dpll_device_ops(dpll)->freq_monitor_set)) ||
+ WARN_ON(ops->supported_ffo && !ops->ffo_get) ||
+ WARN_ON((pin->prop.capabilities &
+ DPLL_PIN_CAPABILITIES_STATE_CONNECTED_OVERRIDE) &&
+ !(pin->prop.capabilities &
+ DPLL_PIN_CAPABILITIES_STATE_CAN_CHANGE)))
return -EINVAL;
mutex_lock(&dpll_lock);
signature.asc
(application/pgp-signature, 488 B)
-----BEGIN PGP SIGNATURE----- iQEzBAABCgAdFiEEreZoqmdXGLWf4p/qJNaLcl1Uh9AFAmqEfVUACgkQJNaLcl1U h9C1Cgf/Yz2C78TE2rYsN47V9qOLRpTAwd3Cn/jrcvhuDE01XTdh6/kjdntMJKYm a+zhoPr5PGk27kJQuh2P2J98evWd/ST1f42jcD6Gnm95/j/b2vWsXyX0FZFgYrvd NfnmA7BwREW0tGpHevJU56XmtIN5gyY8yIzceDIUsHdm/VVxKxkFl5dSTFSqUNe+ n1lyfgOc5pZPnjVOWA45cjdfw6/dfHBQAjACn3DFhAIcNAc8tbkMFb5JfwIFglSa MngIytaWIDmOdIbD8MjMWYW92ibSkyOv2mFswwIxkCl27xQBVAJDLOFhLjd80OTq OrlPDH7ugUPCfqCrnVLiYv7wWFD4fw== =poR7 -----END PGP SIGNATURE-----