Message ID | 20230626091314.557122-1-u.kleine-koenig@pengutronix.de (mailing list archive) |
---|---|
State | Accepted |
Commit | 6744aa931a57eafc16ac656e2565591b7ed8fcd7 |
Headers | show |
Series | usb: typec: nb7vpq904m: Switch back to use struct i2c_driver::probe | expand |
On Mon, Jun 26, 2023 at 11:13:14AM +0200, Uwe Kleine-König wrote: > struct i2c_driver::probe_new is about to go away. Switch the driver to > use the probe callback with the same prototype. > > Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Acked-by: Heikki Krogerus <heikki.krogerus@linux.intel.com> > --- > drivers/usb/typec/mux/nb7vpq904m.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/usb/typec/mux/nb7vpq904m.c b/drivers/usb/typec/mux/nb7vpq904m.c > index 80e580d50129..9360b65e8b06 100644 > --- a/drivers/usb/typec/mux/nb7vpq904m.c > +++ b/drivers/usb/typec/mux/nb7vpq904m.c > @@ -517,7 +517,7 @@ static struct i2c_driver nb7vpq904m_driver = { > .name = "nb7vpq904m", > .of_match_table = nb7vpq904m_of_table, > }, > - .probe_new = nb7vpq904m_probe, > + .probe = nb7vpq904m_probe, > .remove = nb7vpq904m_remove, > .id_table = nb7vpq904m_table, > }; > > base-commit: 88d8f3ac9c67e2d00db671dbb0af50efb7c358cb > -- > 2.39.2
diff --git a/drivers/usb/typec/mux/nb7vpq904m.c b/drivers/usb/typec/mux/nb7vpq904m.c index 80e580d50129..9360b65e8b06 100644 --- a/drivers/usb/typec/mux/nb7vpq904m.c +++ b/drivers/usb/typec/mux/nb7vpq904m.c @@ -517,7 +517,7 @@ static struct i2c_driver nb7vpq904m_driver = { .name = "nb7vpq904m", .of_match_table = nb7vpq904m_of_table, }, - .probe_new = nb7vpq904m_probe, + .probe = nb7vpq904m_probe, .remove = nb7vpq904m_remove, .id_table = nb7vpq904m_table, };
struct i2c_driver::probe_new is about to go away. Switch the driver to use the probe callback with the same prototype. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> --- drivers/usb/typec/mux/nb7vpq904m.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) base-commit: 88d8f3ac9c67e2d00db671dbb0af50efb7c358cb