Lines Matching refs:bits
173 unsigned long *bits; in gpio_keys_attr_show_helper() local
177 bits = kcalloc(BITS_TO_LONGS(n_events), sizeof(*bits), GFP_KERNEL); in gpio_keys_attr_show_helper()
178 if (!bits) in gpio_keys_attr_show_helper()
190 __set_bit(bdata->button->code, bits); in gpio_keys_attr_show_helper()
193 ret = scnprintf(buf, PAGE_SIZE - 1, "%*pbl", n_events, bits); in gpio_keys_attr_show_helper()
197 kfree(bits); in gpio_keys_attr_show_helper()
216 unsigned long *bits; in gpio_keys_attr_store_helper() local
220 bits = kcalloc(BITS_TO_LONGS(n_events), sizeof(*bits), GFP_KERNEL); in gpio_keys_attr_store_helper()
221 if (!bits) in gpio_keys_attr_store_helper()
224 error = bitmap_parselist(buf, bits, n_events); in gpio_keys_attr_store_helper()
235 if (test_bit(bdata->button->code, bits) && in gpio_keys_attr_store_helper()
255 if (test_bit(bdata->button->code, bits)) in gpio_keys_attr_store_helper()
264 kfree(bits); in gpio_keys_attr_store_helper()