for (i = 0; i < size; i++) { if (!matrix_keypad_map_key(input_dev, rows, cols,
row_shift, keys[i])) return -EINVAL;
}
return 0;
}
/** * matrix_keypad_build_keymap - convert platform keymap into matrix keymap * @keymap_data: keymap supplied by the platform code * @keymap_name: name of device tree property containing keymap (if device * tree support is enabled). * @rows: number of rows in target keymap array * @cols: number of cols in target keymap array * @keymap: expanded version of keymap that is suitable for use by * matrix keyboard driver * @input_dev: input devices for which we are setting up the keymap * * This function converts platform keymap (encoded with KEY() macro) into * an array of keycodes that is suitable for using in a standard matrix * keyboard driver that uses row and col as indices. * * If @keymap_data is not supplied and device tree support is enabled * it will attempt load the keymap from property specified by @keymap_name * argument (or "linux,keymap" if @keymap_name is %NULL). * * If @keymap is %NULL the function will automatically allocate managed * block of memory to store the keymap. This memory will be associated with * the parent device and automatically freed when device unbinds from the * driver. * * Callers are expected to set up input_dev->dev.parent before calling this * function.
*/ int matrix_keypad_build_keymap(conststruct matrix_keymap_data *keymap_data, constchar *keymap_name, unsignedint rows, unsignedint cols, unsignedshort *keymap, struct input_dev *input_dev)
{ unsignedint row_shift = get_count_order(cols);
size_t max_keys = rows << row_shift; int i; int error;
if (WARN_ON(!input_dev->dev.parent)) return -EINVAL;
if (!keymap) {
keymap = devm_kcalloc(input_dev->dev.parent,
max_keys, sizeof(*keymap),
GFP_KERNEL); if (!keymap) {
dev_err(input_dev->dev.parent, "Unable to allocate memory for keymap"); return -ENOMEM;
}
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.