* @brief Set the device's description * * The value of @c desc should be a string constant that will not * change (at least until the description is changed in a subsequent * call to device_set_desc() or device_set_desc_copy()). */
| 2469 | * call to device_set_desc() or device_set_desc_copy()). |
| 2470 | */ |
| 2471 | void |
| 2472 | device_set_desc(device_t dev, const char* desc) |
| 2473 | { |
| 2474 | device_set_desc_internal(dev, desc, FALSE); |
| 2475 | } |
| 2476 | |
| 2477 | /** |
| 2478 | * @brief Set the device's description |
no test coverage detected