1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /* 3 * Driver model for leds and led triggers 4 * 5 * Copyright (C) 2005 John Lenz <[email protected]> 6 * Copyright (C) 2005 Richard Purdie <[email protected]> 7 */ 8 #ifndef __LINUX_LEDS_H_INCLUDED 9 #define __LINUX_LEDS_H_INCLUDED 10 11 #include <dt-bindings/leds/common.h> 12 #include <linux/device.h> 13 #include <linux/mutex.h> 14 #include <linux/rwsem.h> 15 #include <linux/spinlock.h> 16 #include <linux/timer.h> 17 #include <linux/types.h> 18 #include <linux/workqueue.h> 19 20 struct attribute_group; 21 struct device_node; 22 struct fwnode_handle; 23 struct gpio_desc; 24 struct kernfs_node; 25 struct led_pattern; 26 struct platform_device; 27 28 /* 29 * LED Core 30 */ 31 32 /* This is obsolete/useless. We now support variable maximum brightness. */ 33 enum led_brightness { 34 LED_OFF = 0, 35 LED_ON = 1, 36 LED_HALF = 127, 37 LED_FULL = 255, 38 }; 39 40 enum led_default_state { 41 LEDS_DEFSTATE_OFF = 0, 42 LEDS_DEFSTATE_ON = 1, 43 LEDS_DEFSTATE_KEEP = 2, 44 }; 45 46 /** 47 * struct led_lookup_data - represents a single LED lookup entry 48 * 49 * @list: internal list of all LED lookup entries 50 * @provider: name of led_classdev providing the LED 51 * @dev_id: name of the device associated with this LED 52 * @con_id: name of the LED from the device's point of view 53 */ 54 struct led_lookup_data { 55 struct list_head list; 56 const char *provider; 57 const char *dev_id; 58 const char *con_id; 59 }; 60 61 struct led_init_data { 62 /* device fwnode handle */ 63 struct fwnode_handle *fwnode; 64 /* 65 * default <color:function> tuple, for backward compatibility 66 * with in-driver hard-coded LED names used as a fallback when 67 * DT "label" property is absent; it should be set to NULL 68 * in new LED class drivers. 69 */ 70 const char *default_label; 71 /* 72 * string to be used for devicename section of LED class device 73 * either for label based LED name composition path or for fwnode 74 * based when devname_mandatory is true 75 */ 76 const char *devicename; 77 /* 78 * indicates if LED name should always comprise devicename section; 79 * only LEDs exposed by drivers of hot-pluggable devices should 80 * set it to true 81 */ 82 bool devname_mandatory; 83 }; 84 85 #if IS_ENABLED(CONFIG_NEW_LEDS) 86 enum led_default_state led_init_default_state_get(struct fwnode_handle *fwnode); 87 #else 88 static inline enum led_default_state 89 led_init_default_state_get(struct fwnode_handle *fwnode) 90 { 91 return LEDS_DEFSTATE_OFF; 92 } 93 #endif 94 95 struct led_hw_trigger_type { 96 int dummy; 97 }; 98 99 struct led_classdev { 100 const char *name; 101 unsigned int brightness; 102 unsigned int max_brightness; 103 int flags; 104 105 /* Lower 16 bits reflect status */ 106 #define LED_SUSPENDED BIT(0) 107 #define LED_UNREGISTERING BIT(1) 108 /* Upper 16 bits reflect control information */ 109 #define LED_CORE_SUSPENDRESUME BIT(16) 110 #define LED_SYSFS_DISABLE BIT(17) 111 #define LED_DEV_CAP_FLASH BIT(18) 112 #define LED_HW_PLUGGABLE BIT(19) 113 #define LED_PANIC_INDICATOR BIT(20) 114 #define LED_BRIGHT_HW_CHANGED BIT(21) 115 #define LED_RETAIN_AT_SHUTDOWN BIT(22) 116 #define LED_INIT_DEFAULT_TRIGGER BIT(23) 117 118 /* set_brightness_work / blink_timer flags, atomic, private. */ 119 unsigned long work_flags; 120 121 #define LED_BLINK_SW 0 122 #define LED_BLINK_ONESHOT 1 123 #define LED_BLINK_ONESHOT_STOP 2 124 #define LED_BLINK_INVERT 3 125 #define LED_BLINK_BRIGHTNESS_CHANGE 4 126 #define LED_BLINK_DISABLE 5 127 128 /* Set LED brightness level 129 * Must not sleep. Use brightness_set_blocking for drivers 130 * that can sleep while setting brightness. 131 */ 132 void (*brightness_set)(struct led_classdev *led_cdev, 133 enum led_brightness brightness); 134 /* 135 * Set LED brightness level immediately - it can block the caller for 136 * the time required for accessing a LED device register. 137 */ 138 int (*brightness_set_blocking)(struct led_classdev *led_cdev, 139 enum led_brightness brightness); 140 /* Get LED brightness level */ 141 enum led_brightness (*brightness_get)(struct led_classdev *led_cdev); 142 143 /* 144 * Activate hardware accelerated blink, delays are in milliseconds 145 * and if both are zero then a sensible default should be chosen. 146 * The call should adjust the timings in that case and if it can't 147 * match the values specified exactly. 148 * Deactivate blinking again when the brightness is set to LED_OFF 149 * via the brightness_set() callback. 150 */ 151 int (*blink_set)(struct led_classdev *led_cdev, 152 unsigned long *delay_on, 153 unsigned long *delay_off); 154 155 int (*pattern_set)(struct led_classdev *led_cdev, 156 struct led_pattern *pattern, u32 len, int repeat); 157 int (*pattern_clear)(struct led_classdev *led_cdev); 158 159 struct device *dev; 160 const struct attribute_group **groups; 161 162 struct list_head node; /* LED Device list */ 163 const char *default_trigger; /* Trigger to use */ 164 165 unsigned long blink_delay_on, blink_delay_off; 166 struct timer_list blink_timer; 167 int blink_brightness; 168 int new_blink_brightness; 169 void (*flash_resume)(struct led_classdev *led_cdev); 170 171 struct work_struct set_brightness_work; 172 int delayed_set_value; 173 174 #ifdef CONFIG_LEDS_TRIGGERS 175 /* Protects the trigger data below */ 176 struct rw_semaphore trigger_lock; 177 178 struct led_trigger *trigger; 179 struct list_head trig_list; 180 void *trigger_data; 181 /* true if activated - deactivate routine uses it to do cleanup */ 182 bool activated; 183 184 /* LEDs that have private triggers have this set */ 185 struct led_hw_trigger_type *trigger_type; 186 187 /* Unique trigger name supported by LED set in hw control mode */ 188 const char *hw_control_trigger; 189 /* 190 * Check if the LED driver supports the requested mode provided by the 191 * defined supported trigger to setup the LED to hw control mode. 192 * 193 * Return 0 on success. Return -EOPNOTSUPP when the passed flags are not 194 * supported and software fallback needs to be used. 195 * Return a negative error number on any other case for check fail due 196 * to various reason like device not ready or timeouts. 197 */ 198 int (*hw_control_is_supported)(struct led_classdev *led_cdev, 199 unsigned long flags); 200 /* 201 * Activate hardware control, LED driver will use the provided flags 202 * from the supported trigger and setup the LED to be driven by hardware 203 * following the requested mode from the trigger flags. 204 * Deactivate hardware blink control by setting brightness to LED_OFF via 205 * the brightness_set() callback. 206 * 207 * Return 0 on success, a negative error number on flags apply fail. 208 */ 209 int (*hw_control_set)(struct led_classdev *led_cdev, 210 unsigned long flags); 211 /* 212 * Get from the LED driver the current mode that the LED is set in hw 213 * control mode and put them in flags. 214 * Trigger can use this to get the initial state of a LED already set in 215 * hardware blink control. 216 * 217 * Return 0 on success, a negative error number on failing parsing the 218 * initial mode. Error from this function is NOT FATAL as the device 219 * may be in a not supported initial state by the attached LED trigger. 220 */ 221 int (*hw_control_get)(struct led_classdev *led_cdev, 222 unsigned long *flags); 223 #endif 224 225 #ifdef CONFIG_LEDS_BRIGHTNESS_HW_CHANGED 226 int brightness_hw_changed; 227 struct kernfs_node *brightness_hw_changed_kn; 228 #endif 229 230 /* Ensures consistent access to the LED Flash Class device */ 231 struct mutex led_access; 232 }; 233 234 /** 235 * led_classdev_register_ext - register a new object of LED class with 236 * init data 237 * @parent: LED controller device this LED is driven by 238 * @led_cdev: the led_classdev structure for this device 239 * @init_data: the LED class device initialization data 240 * 241 * Register a new object of LED class, with name derived from init_data. 242 * 243 * Returns: 0 on success or negative error value on failure 244 */ 245 int led_classdev_register_ext(struct device *parent, 246 struct led_classdev *led_cdev, 247 struct led_init_data *init_data); 248 249 /** 250 * led_classdev_register - register a new object of LED class 251 * @parent: LED controller device this LED is driven by 252 * @led_cdev: the led_classdev structure for this device 253 * 254 * Register a new object of LED class, with name derived from the name property 255 * of passed led_cdev argument. 256 * 257 * Returns: 0 on success or negative error value on failure 258 */ 259 static inline int led_classdev_register(struct device *parent, 260 struct led_classdev *led_cdev) 261 { 262 return led_classdev_register_ext(parent, led_cdev, NULL); 263 } 264 265 #if IS_ENABLED(CONFIG_LEDS_CLASS) 266 int devm_led_classdev_register_ext(struct device *parent, 267 struct led_classdev *led_cdev, 268 struct led_init_data *init_data); 269 #else 270 static inline int 271 devm_led_classdev_register_ext(struct device *parent, 272 struct led_classdev *led_cdev, 273 struct led_init_data *init_data) 274 { 275 return 0; 276 } 277 #endif 278 279 static inline int devm_led_classdev_register(struct device *parent, 280 struct led_classdev *led_cdev) 281 { 282 return devm_led_classdev_register_ext(parent, led_cdev, NULL); 283 } 284 void led_classdev_unregister(struct led_classdev *led_cdev); 285 void devm_led_classdev_unregister(struct device *parent, 286 struct led_classdev *led_cdev); 287 void led_classdev_suspend(struct led_classdev *led_cdev); 288 void led_classdev_resume(struct led_classdev *led_cdev); 289 290 void led_add_lookup(struct led_lookup_data *led_lookup); 291 void led_remove_lookup(struct led_lookup_data *led_lookup); 292 293 struct led_classdev *__must_check led_get(struct device *dev, char *con_id); 294 struct led_classdev *__must_check devm_led_get(struct device *dev, char *con_id); 295 296 extern struct led_classdev *of_led_get(struct device_node *np, int index); 297 extern void led_put(struct led_classdev *led_cdev); 298 struct led_classdev *__must_check devm_of_led_get(struct device *dev, 299 int index); 300 301 /** 302 * led_blink_set - set blinking with software fallback 303 * @led_cdev: the LED to start blinking 304 * @delay_on: the time it should be on (in ms) 305 * @delay_off: the time it should ble off (in ms) 306 * 307 * This function makes the LED blink, attempting to use the 308 * hardware acceleration if possible, but falling back to 309 * software blinking if there is no hardware blinking or if 310 * the LED refuses the passed values. 311 * 312 * Note that if software blinking is active, simply calling 313 * led_cdev->brightness_set() will not stop the blinking, 314 * use led_set_brightness() instead. 315 */ 316 void led_blink_set(struct led_classdev *led_cdev, unsigned long *delay_on, 317 unsigned long *delay_off); 318 /** 319 * led_blink_set_oneshot - do a oneshot software blink 320 * @led_cdev: the LED to start blinking 321 * @delay_on: the time it should be on (in ms) 322 * @delay_off: the time it should ble off (in ms) 323 * @invert: blink off, then on, leaving the led on 324 * 325 * This function makes the LED blink one time for delay_on + 326 * delay_off time, ignoring the request if another one-shot 327 * blink is already in progress. 328 * 329 * If invert is set, led blinks for delay_off first, then for 330 * delay_on and leave the led on after the on-off cycle. 331 */ 332 void led_blink_set_oneshot(struct led_classdev *led_cdev, 333 unsigned long *delay_on, unsigned long *delay_off, 334 int invert); 335 /** 336 * led_set_brightness - set LED brightness 337 * @led_cdev: the LED to set 338 * @brightness: the brightness to set it to 339 * 340 * Set an LED's brightness, and, if necessary, cancel the 341 * software blink timer that implements blinking when the 342 * hardware doesn't. This function is guaranteed not to sleep. 343 */ 344 void led_set_brightness(struct led_classdev *led_cdev, unsigned int brightness); 345 346 /** 347 * led_set_brightness_sync - set LED brightness synchronously 348 * @led_cdev: the LED to set 349 * @value: the brightness to set it to 350 * 351 * Set an LED's brightness immediately. This function will block 352 * the caller for the time required for accessing device registers, 353 * and it can sleep. 354 * 355 * Returns: 0 on success or negative error value on failure 356 */ 357 int led_set_brightness_sync(struct led_classdev *led_cdev, unsigned int value); 358 359 /** 360 * led_update_brightness - update LED brightness 361 * @led_cdev: the LED to query 362 * 363 * Get an LED's current brightness and update led_cdev->brightness 364 * member with the obtained value. 365 * 366 * Returns: 0 on success or negative error value on failure 367 */ 368 int led_update_brightness(struct led_classdev *led_cdev); 369 370 /** 371 * led_get_default_pattern - return default pattern 372 * 373 * @led_cdev: the LED to get default pattern for 374 * @size: pointer for storing the number of elements in returned array, 375 * modified only if return != NULL 376 * 377 * Return: Allocated array of integers with default pattern from device tree 378 * or NULL. Caller is responsible for kfree(). 379 */ 380 u32 *led_get_default_pattern(struct led_classdev *led_cdev, unsigned int *size); 381 382 /** 383 * led_sysfs_disable - disable LED sysfs interface 384 * @led_cdev: the LED to set 385 * 386 * Disable the led_cdev's sysfs interface. 387 */ 388 void led_sysfs_disable(struct led_classdev *led_cdev); 389 390 /** 391 * led_sysfs_enable - enable LED sysfs interface 392 * @led_cdev: the LED to set 393 * 394 * Enable the led_cdev's sysfs interface. 395 */ 396 void led_sysfs_enable(struct led_classdev *led_cdev); 397 398 /** 399 * led_compose_name - compose LED class device name 400 * @dev: LED controller device object 401 * @init_data: the LED class device initialization data 402 * @led_classdev_name: composed LED class device name 403 * 404 * Create LED class device name basing on the provided init_data argument. 405 * The name can have <devicename:color:function> or <color:function>. 406 * form, depending on the init_data configuration. 407 * 408 * Returns: 0 on success or negative error value on failure 409 */ 410 int led_compose_name(struct device *dev, struct led_init_data *init_data, 411 char *led_classdev_name); 412 413 /** 414 * led_sysfs_is_disabled - check if LED sysfs interface is disabled 415 * @led_cdev: the LED to query 416 * 417 * Returns: true if the led_cdev's sysfs interface is disabled. 418 */ 419 static inline bool led_sysfs_is_disabled(struct led_classdev *led_cdev) 420 { 421 return led_cdev->flags & LED_SYSFS_DISABLE; 422 } 423 424 /* 425 * LED Triggers 426 */ 427 /* Registration functions for simple triggers */ 428 #define DEFINE_LED_TRIGGER(x) static struct led_trigger *x; 429 #define DEFINE_LED_TRIGGER_GLOBAL(x) struct led_trigger *x; 430 431 #ifdef CONFIG_LEDS_TRIGGERS 432 433 #define TRIG_NAME_MAX 50 434 435 struct led_trigger { 436 /* Trigger Properties */ 437 const char *name; 438 int (*activate)(struct led_classdev *led_cdev); 439 void (*deactivate)(struct led_classdev *led_cdev); 440 441 /* LED-private triggers have this set */ 442 struct led_hw_trigger_type *trigger_type; 443 444 /* LEDs under control by this trigger (for simple triggers) */ 445 spinlock_t leddev_list_lock; 446 struct list_head led_cdevs; 447 448 /* Link to next registered trigger */ 449 struct list_head next_trig; 450 451 const struct attribute_group **groups; 452 }; 453 454 /* 455 * Currently the attributes in struct led_trigger::groups are added directly to 456 * the LED device. As this might change in the future, the following 457 * macros abstract getting the LED device and its trigger_data from the dev 458 * parameter passed to the attribute accessor functions. 459 */ 460 #define led_trigger_get_led(dev) ((struct led_classdev *)dev_get_drvdata((dev))) 461 #define led_trigger_get_drvdata(dev) (led_get_trigger_data(led_trigger_get_led(dev))) 462 463 /* Registration functions for complex triggers */ 464 int led_trigger_register(struct led_trigger *trigger); 465 void led_trigger_unregister(struct led_trigger *trigger); 466 int devm_led_trigger_register(struct device *dev, 467 struct led_trigger *trigger); 468 469 void led_trigger_register_simple(const char *name, 470 struct led_trigger **trigger); 471 void led_trigger_unregister_simple(struct led_trigger *trigger); 472 void led_trigger_event(struct led_trigger *trigger, enum led_brightness event); 473 void led_trigger_blink(struct led_trigger *trigger, unsigned long *delay_on, 474 unsigned long *delay_off); 475 void led_trigger_blink_oneshot(struct led_trigger *trigger, 476 unsigned long *delay_on, 477 unsigned long *delay_off, 478 int invert); 479 void led_trigger_set_default(struct led_classdev *led_cdev); 480 int led_trigger_set(struct led_classdev *led_cdev, struct led_trigger *trigger); 481 void led_trigger_remove(struct led_classdev *led_cdev); 482 483 static inline void led_set_trigger_data(struct led_classdev *led_cdev, 484 void *trigger_data) 485 { 486 led_cdev->trigger_data = trigger_data; 487 } 488 489 static inline void *led_get_trigger_data(struct led_classdev *led_cdev) 490 { 491 return led_cdev->trigger_data; 492 } 493 494 /** 495 * led_trigger_rename_static - rename a trigger 496 * @name: the new trigger name 497 * @trig: the LED trigger to rename 498 * 499 * Change a LED trigger name by copying the string passed in 500 * name into current trigger name, which MUST be large 501 * enough for the new string. 502 * 503 * Note that name must NOT point to the same string used 504 * during LED registration, as that could lead to races. 505 * 506 * This is meant to be used on triggers with statically 507 * allocated name. 508 */ 509 void led_trigger_rename_static(const char *name, struct led_trigger *trig); 510 511 #define module_led_trigger(__led_trigger) \ 512 module_driver(__led_trigger, led_trigger_register, \ 513 led_trigger_unregister) 514 515 #else 516 517 /* Trigger has no members */ 518 struct led_trigger {}; 519 520 /* Trigger inline empty functions */ 521 static inline void led_trigger_register_simple(const char *name, 522 struct led_trigger **trigger) {} 523 static inline void led_trigger_unregister_simple(struct led_trigger *trigger) {} 524 static inline void led_trigger_event(struct led_trigger *trigger, 525 enum led_brightness event) {} 526 static inline void led_trigger_blink(struct led_trigger *trigger, 527 unsigned long *delay_on, 528 unsigned long *delay_off) {} 529 static inline void led_trigger_blink_oneshot(struct led_trigger *trigger, 530 unsigned long *delay_on, 531 unsigned long *delay_off, 532 int invert) {} 533 static inline void led_trigger_set_default(struct led_classdev *led_cdev) {} 534 static inline int led_trigger_set(struct led_classdev *led_cdev, 535 struct led_trigger *trigger) 536 { 537 return 0; 538 } 539 540 static inline void led_trigger_remove(struct led_classdev *led_cdev) {} 541 static inline void led_set_trigger_data(struct led_classdev *led_cdev) {} 542 static inline void *led_get_trigger_data(struct led_classdev *led_cdev) 543 { 544 return NULL; 545 } 546 547 #endif /* CONFIG_LEDS_TRIGGERS */ 548 549 /* Trigger specific functions */ 550 #ifdef CONFIG_LEDS_TRIGGER_DISK 551 void ledtrig_disk_activity(bool write); 552 #else 553 static inline void ledtrig_disk_activity(bool write) {} 554 #endif 555 556 #ifdef CONFIG_LEDS_TRIGGER_MTD 557 void ledtrig_mtd_activity(void); 558 #else 559 static inline void ledtrig_mtd_activity(void) {} 560 #endif 561 562 #if defined(CONFIG_LEDS_TRIGGER_CAMERA) || defined(CONFIG_LEDS_TRIGGER_CAMERA_MODULE) 563 void ledtrig_flash_ctrl(bool on); 564 void ledtrig_torch_ctrl(bool on); 565 #else 566 static inline void ledtrig_flash_ctrl(bool on) {} 567 static inline void ledtrig_torch_ctrl(bool on) {} 568 #endif 569 570 /* 571 * Generic LED platform data for describing LED names and default triggers. 572 */ 573 struct led_info { 574 const char *name; 575 const char *default_trigger; 576 int flags; 577 }; 578 579 struct led_platform_data { 580 int num_leds; 581 struct led_info *leds; 582 }; 583 584 struct led_properties { 585 u32 color; 586 bool color_present; 587 const char *function; 588 u32 func_enum; 589 bool func_enum_present; 590 const char *label; 591 }; 592 593 typedef int (*gpio_blink_set_t)(struct gpio_desc *desc, int state, 594 unsigned long *delay_on, 595 unsigned long *delay_off); 596 597 /* For the leds-gpio driver */ 598 struct gpio_led { 599 const char *name; 600 const char *default_trigger; 601 unsigned gpio; 602 unsigned active_low : 1; 603 unsigned retain_state_suspended : 1; 604 unsigned panic_indicator : 1; 605 unsigned default_state : 2; 606 unsigned retain_state_shutdown : 1; 607 /* default_state should be one of LEDS_GPIO_DEFSTATE_(ON|OFF|KEEP) */ 608 struct gpio_desc *gpiod; 609 }; 610 #define LEDS_GPIO_DEFSTATE_OFF LEDS_DEFSTATE_OFF 611 #define LEDS_GPIO_DEFSTATE_ON LEDS_DEFSTATE_ON 612 #define LEDS_GPIO_DEFSTATE_KEEP LEDS_DEFSTATE_KEEP 613 614 struct gpio_led_platform_data { 615 int num_leds; 616 const struct gpio_led *leds; 617 618 #define GPIO_LED_NO_BLINK_LOW 0 /* No blink GPIO state low */ 619 #define GPIO_LED_NO_BLINK_HIGH 1 /* No blink GPIO state high */ 620 #define GPIO_LED_BLINK 2 /* Please, blink */ 621 gpio_blink_set_t gpio_blink_set; 622 }; 623 624 #ifdef CONFIG_NEW_LEDS 625 struct platform_device *gpio_led_register_device( 626 int id, const struct gpio_led_platform_data *pdata); 627 #else 628 static inline struct platform_device *gpio_led_register_device( 629 int id, const struct gpio_led_platform_data *pdata) 630 { 631 return 0; 632 } 633 #endif 634 635 enum cpu_led_event { 636 CPU_LED_IDLE_START, /* CPU enters idle */ 637 CPU_LED_IDLE_END, /* CPU idle ends */ 638 CPU_LED_START, /* Machine starts, especially resume */ 639 CPU_LED_STOP, /* Machine stops, especially suspend */ 640 CPU_LED_HALTED, /* Machine shutdown */ 641 }; 642 #ifdef CONFIG_LEDS_TRIGGER_CPU 643 void ledtrig_cpu(enum cpu_led_event evt); 644 #else 645 static inline void ledtrig_cpu(enum cpu_led_event evt) 646 { 647 return; 648 } 649 #endif 650 651 #ifdef CONFIG_LEDS_BRIGHTNESS_HW_CHANGED 652 void led_classdev_notify_brightness_hw_changed( 653 struct led_classdev *led_cdev, unsigned int brightness); 654 #else 655 static inline void led_classdev_notify_brightness_hw_changed( 656 struct led_classdev *led_cdev, enum led_brightness brightness) { } 657 #endif 658 659 /** 660 * struct led_pattern - pattern interval settings 661 * @delta_t: pattern interval delay, in milliseconds 662 * @brightness: pattern interval brightness 663 */ 664 struct led_pattern { 665 u32 delta_t; 666 int brightness; 667 }; 668 669 enum led_audio { 670 LED_AUDIO_MUTE, /* master mute LED */ 671 LED_AUDIO_MICMUTE, /* mic mute LED */ 672 NUM_AUDIO_LEDS 673 }; 674 675 #if IS_ENABLED(CONFIG_LEDS_TRIGGER_AUDIO) 676 enum led_brightness ledtrig_audio_get(enum led_audio type); 677 void ledtrig_audio_set(enum led_audio type, enum led_brightness state); 678 #else 679 static inline enum led_brightness ledtrig_audio_get(enum led_audio type) 680 { 681 return LED_OFF; 682 } 683 static inline void ledtrig_audio_set(enum led_audio type, 684 enum led_brightness state) 685 { 686 } 687 #endif 688 689 #endif /* __LINUX_LEDS_H_INCLUDED */ 690