* @brief Set the device's description * * The string pointed to by @c desc is copied. Use this function if * the device description is generated, (e.g. with sprintf()). */
| 2481 | * the device description is generated, (e.g. with sprintf()). |
| 2482 | */ |
| 2483 | void |
| 2484 | device_set_desc_copy(device_t dev, const char* desc) |
| 2485 | { |
| 2486 | device_set_desc_internal(dev, desc, TRUE); |
| 2487 | } |
| 2488 | |
| 2489 | /** |
| 2490 | * @brief Set the device's flags |
no test coverage detected