aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wimax/i2400m/i2400m.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/wimax/i2400m/i2400m.h')
-rw-r--r--drivers/net/wimax/i2400m/i2400m.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/wimax/i2400m/i2400m.h b/drivers/net/wimax/i2400m/i2400m.h
index ad71ad1086ea..5008cdb12b42 100644
--- a/drivers/net/wimax/i2400m/i2400m.h
+++ b/drivers/net/wimax/i2400m/i2400m.h
@@ -366,6 +366,9 @@ struct i2400m_reset_ctx;
366 * module unloads, as we don't keep each dentry. 366 * module unloads, as we don't keep each dentry.
367 * 367 *
368 * @fw_name: name of the firmware image that is currently being used. 368 * @fw_name: name of the firmware image that is currently being used.
369 *
370 * @fw_version: version of the firmware interface, Major.minor,
371 * encoded in the high word and low word (major << 16 | minor).
369 */ 372 */
370struct i2400m { 373struct i2400m {
371 struct wimax_dev wimax_dev; /* FIRST! See doc */ 374 struct wimax_dev wimax_dev; /* FIRST! See doc */
@@ -424,6 +427,7 @@ struct i2400m {
424 427
425 struct dentry *debugfs_dentry; 428 struct dentry *debugfs_dentry;
426 const char *fw_name; /* name of the current firmware image */ 429 const char *fw_name; /* name of the current firmware image */
430 unsigned long fw_version; /* version of the firmware interface */
427}; 431};
428 432
429 433