Commit a4d5569e authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Dmitry Torokhov

Input: docs - use PROPERTY_ENTRY_U32() directly

Instead of using PROPERTY_ENTRY_INTEGER() with explicitly supplied type,
use PROPERTY_ENTRY_U32() dedicated macro.

It will help modify internals of built-in device properties API.

No functional change intended.
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent 9f87b9fc
...@@ -108,9 +108,9 @@ example below: ...@@ -108,9 +108,9 @@ example below:
}; };
static const struct property_entry rotary_encoder_properties[] __initconst = { static const struct property_entry rotary_encoder_properties[] __initconst = {
PROPERTY_ENTRY_INTEGER("rotary-encoder,steps-per-period", u32, 24), PROPERTY_ENTRY_U32("rotary-encoder,steps-per-period", 24),
PROPERTY_ENTRY_INTEGER("linux,axis", u32, ABS_X), PROPERTY_ENTRY_U32("linux,axis", ABS_X),
PROPERTY_ENTRY_INTEGER("rotary-encoder,relative_axis", u32, 0), PROPERTY_ENTRY_U32("rotary-encoder,relative_axis", 0),
{ }, { },
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment