Lines Matching refs:led_tables
63 struct simatic_ipc_led_tables *led_tables; in simatic_ipc_leds_gpio_f7188x_probe() local
65 led_tables = devm_kzalloc(&pdev->dev, sizeof(*led_tables), GFP_KERNEL); in simatic_ipc_leds_gpio_f7188x_probe()
66 if (!led_tables) in simatic_ipc_leds_gpio_f7188x_probe()
71 led_tables->led_lookup_table = &simatic_ipc_led_gpio_table_227g; in simatic_ipc_leds_gpio_f7188x_probe()
72 led_tables->led_lookup_table_extra = &simatic_ipc_led_gpio_table_extra_227g; in simatic_ipc_leds_gpio_f7188x_probe()
75 led_tables->led_lookup_table = &simatic_ipc_led_gpio_table_bx_59a; in simatic_ipc_leds_gpio_f7188x_probe()
81 platform_set_drvdata(pdev, led_tables); in simatic_ipc_leds_gpio_f7188x_probe()
82 return simatic_ipc_leds_gpio_probe(pdev, led_tables->led_lookup_table, in simatic_ipc_leds_gpio_f7188x_probe()
83 led_tables->led_lookup_table_extra); in simatic_ipc_leds_gpio_f7188x_probe()
88 struct simatic_ipc_led_tables *led_tables = platform_get_drvdata(pdev); in simatic_ipc_leds_gpio_f7188x_remove() local
90 simatic_ipc_leds_gpio_remove(pdev, led_tables->led_lookup_table, in simatic_ipc_leds_gpio_f7188x_remove()
91 led_tables->led_lookup_table_extra); in simatic_ipc_leds_gpio_f7188x_remove()