drivers: kscan: Extend callback arguments to 32-bits

Extends the keyboard scan callback row and column arguments from 8-bits
to 32-bits to support a touch panel driver implementation.

Signed-off-by: Maureen Helm <maureen.helm@nxp.com>
This commit is contained in:
Maureen Helm 2020-01-20 13:58:44 -06:00 committed by Anas Nashif
commit 5a330f9b36
3 changed files with 3 additions and 3 deletions

View file

@ -41,7 +41,7 @@ extern "C" {
* @param row Describes row change.
* @param pressed Describes the kind of key event.
*/
typedef void (*kscan_callback_t)(struct device *dev, u8_t row, u8_t column,
typedef void (*kscan_callback_t)(struct device *dev, u32_t row, u32_t column,
bool pressed);
/**