.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
---|
1 | 2 | /* |
---|
2 | 3 | * Firmware loading and handling functions. |
---|
3 | 4 | */ |
---|
.. | .. |
---|
120 | 121 | * either a helper firmware and a main firmware (2-stage), or just the helper. |
---|
121 | 122 | * |
---|
122 | 123 | * @priv: Pointer to lbs_private instance |
---|
123 | | - * @dev: A pointer to &device structure |
---|
| 124 | + * @device: A pointer to &device structure |
---|
124 | 125 | * @card_model: Bus-specific card model ID used to filter firmware table |
---|
125 | 126 | * elements |
---|
126 | 127 | * @fw_table: Table of firmware file names and device model numbers |
---|
127 | 128 | * terminated by an entry with a NULL helper name |
---|
128 | | - * @callback: User callback to invoke when firmware load succeeds or fails. |
---|
| 129 | + * @callback: User callback to invoke when firmware load succeeds or fails. |
---|
129 | 130 | */ |
---|
130 | 131 | int lbs_get_firmware_async(struct lbs_private *priv, struct device *device, |
---|
131 | 132 | u32 card_model, const struct lbs_fw_table *fw_table, |
---|