Lines Matching refs:cdev
115 struct led_classdev cdev; member
149 container_of(led_cdev, struct netxbig_led_data, cdev); in netxbig_led_blink_set()
178 container_of(led_cdev, struct netxbig_led_data, cdev); in netxbig_led_set()
219 container_of(led_cdev, struct netxbig_led_data, cdev); in netxbig_led_sata_store()
269 container_of(led_cdev, struct netxbig_led_data, cdev); in netxbig_led_sata_show()
289 led_dat->cdev.name = template->name; in create_netxbig_led()
290 led_dat->cdev.default_trigger = template->default_trigger; in create_netxbig_led()
291 led_dat->cdev.blink_set = netxbig_led_blink_set; in create_netxbig_led()
292 led_dat->cdev.brightness_set = netxbig_led_set; in create_netxbig_led()
304 led_dat->cdev.brightness = LED_OFF; in create_netxbig_led()
305 led_dat->cdev.max_brightness = template->bright_max; in create_netxbig_led()
306 led_dat->cdev.flags |= LED_CORE_SUSPENDRESUME; in create_netxbig_led()
317 led_dat->cdev.groups = netxbig_led_groups; in create_netxbig_led()
319 return devm_led_classdev_register(&pdev->dev, &led_dat->cdev); in create_netxbig_led()