• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/platform/x86/

Lines Matching defs:fujitsu_hotkey

176 static struct fujitsu_hotkey_t *fujitsu_hotkey;
224 status = acpi_get_handle(fujitsu_hotkey->acpi_handle, "FUNC", &handle);
524 if (!(fujitsu_hotkey->rfkill_supported & 0x100))
526 if (fujitsu_hotkey->rfkill_state & 0x100)
536 if (!(fujitsu_hotkey->rfkill_supported & 0x200))
538 if (fujitsu_hotkey->rfkill_state & 0x200)
548 if (!(fujitsu_hotkey->rfkill_supported & 0x20))
550 if (fujitsu_hotkey->rfkill_state & 0x20)
819 fujitsu_hotkey->acpi_handle = device->handle;
823 device->driver_data = fujitsu_hotkey;
826 spin_lock_init(&fujitsu_hotkey->fifo_lock);
827 error = kfifo_alloc(&fujitsu_hotkey->fifo, RINGBUFFERSIZE * sizeof(int),
834 fujitsu_hotkey->input = input = input_allocate_device();
840 snprintf(fujitsu_hotkey->phys, sizeof(fujitsu_hotkey->phys),
844 input->phys = fujitsu_hotkey->phys;
860 result = acpi_bus_get_power(fujitsu_hotkey->acpi_handle, &state);
870 fujitsu_hotkey->dev = device;
887 fujitsu_hotkey->rfkill_supported =
892 if (fujitsu_hotkey->rfkill_supported == UNSUPPORTED_CMD)
893 fujitsu_hotkey->rfkill_supported = 0;
895 if (fujitsu_hotkey->rfkill_supported)
896 fujitsu_hotkey->rfkill_state =
908 fujitsu_hotkey->logolamp_registered = 1;
920 fujitsu_hotkey->kblamps_registered = 1;
936 kfifo_free(&fujitsu_hotkey->fifo);
943 struct fujitsu_hotkey_t *fujitsu_hotkey = acpi_driver_data(device);
944 struct input_dev *input = fujitsu_hotkey->input;
947 if (fujitsu_hotkey->logolamp_registered)
950 if (fujitsu_hotkey->kblamps_registered)
956 kfifo_free(&fujitsu_hotkey->fifo);
958 fujitsu_hotkey->acpi_handle = NULL;
970 input = fujitsu_hotkey->input;
972 if (fujitsu_hotkey->rfkill_supported)
973 fujitsu_hotkey->rfkill_state =
1008 status = kfifo_in_locked(&fujitsu_hotkey->fifo,
1011 &fujitsu_hotkey->fifo_lock);
1023 &fujitsu_hotkey->fifo,
1026 &fujitsu_hotkey->fifo_lock))
1150 fujitsu_hotkey = kzalloc(sizeof(struct fujitsu_hotkey_t), GFP_KERNEL);
1151 if (!fujitsu_hotkey) {
1177 kfree(fujitsu_hotkey);
1202 kfree(fujitsu_hotkey);