Re: [PATCH 1/6] drivers/i2c: Update i2c_trace_msg static key to modern api

2018-04-03 Thread Wolfram Sang
On Mon, Mar 26, 2018 at 02:09:24PM -0700, Davidlohr Bueso wrote: > No changes in refcount semantics -- key init is false; replace > > static_key_slow_inc|dec with static_branch_inc|dec > static_key_false with static_branch_unlikely > > Added a '_key' suffix to i2c_trace_msg, for

Re: [PATCH 1/6] drivers/i2c: Update i2c_trace_msg static key to modern api

2018-04-03 Thread Wolfram Sang
On Mon, Mar 26, 2018 at 02:09:24PM -0700, Davidlohr Bueso wrote: > No changes in refcount semantics -- key init is false; replace > > static_key_slow_inc|dec with static_branch_inc|dec > static_key_false with static_branch_unlikely > > Added a '_key' suffix to i2c_trace_msg, for

Re: [PATCH 1/6] drivers/i2c: Update i2c_trace_msg static key to modern api

2018-04-03 Thread David Howells
Wolfram Sang wrote: > > No changes in refcount semantics -- key init is false; replace > > > > static_key_slow_inc|dec with static_branch_inc|dec > > static_key_false with static_branch_unlikely > > > > Added a '_key' suffix to i2c_trace_msg, for better self

Re: [PATCH 1/6] drivers/i2c: Update i2c_trace_msg static key to modern api

2018-04-03 Thread David Howells
Wolfram Sang wrote: > > No changes in refcount semantics -- key init is false; replace > > > > static_key_slow_inc|dec with static_branch_inc|dec > > static_key_false with static_branch_unlikely > > > > Added a '_key' suffix to i2c_trace_msg, for better self > > documentation. >

Re: [PATCH 1/6] drivers/i2c: Update i2c_trace_msg static key to modern api

2018-04-03 Thread Wolfram Sang
On Mon, Mar 26, 2018 at 02:09:24PM -0700, Davidlohr Bueso wrote: > No changes in refcount semantics -- key init is false; replace > > static_key_slow_inc|dec with static_branch_inc|dec > static_key_false with static_branch_unlikely > > Added a '_key' suffix to i2c_trace_msg, for

Re: [PATCH 1/6] drivers/i2c: Update i2c_trace_msg static key to modern api

2018-04-03 Thread Wolfram Sang
On Mon, Mar 26, 2018 at 02:09:24PM -0700, Davidlohr Bueso wrote: > No changes in refcount semantics -- key init is false; replace > > static_key_slow_inc|dec with static_branch_inc|dec > static_key_false with static_branch_unlikely > > Added a '_key' suffix to i2c_trace_msg, for

[PATCH 1/6] drivers/i2c: Update i2c_trace_msg static key to modern api

2018-03-26 Thread Davidlohr Bueso
No changes in refcount semantics -- key init is false; replace static_key_slow_inc|dec with static_branch_inc|dec static_key_false with static_branch_unlikely Added a '_key' suffix to i2c_trace_msg, for better self documentation. Cc: Wolfram Sang Cc:

[PATCH 1/6] drivers/i2c: Update i2c_trace_msg static key to modern api

2018-03-26 Thread Davidlohr Bueso
No changes in refcount semantics -- key init is false; replace static_key_slow_inc|dec with static_branch_inc|dec static_key_false with static_branch_unlikely Added a '_key' suffix to i2c_trace_msg, for better self documentation. Cc: Wolfram Sang Cc: linux-...@vger.kernel.org