diff options
author | Peter Hurley <peter@hurleysoftware.com> | 2013-01-28 20:57:45 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-29 23:26:16 -0500 |
commit | 5d110d92961317c1f289396473be3c26d01f171c (patch) | |
tree | 2686e31eeab21580767ecde3af8a98231040054b /drivers/staging | |
parent | 06b8f14dc2649ee12ff5194fc562d74353c8b4ba (diff) | |
download | lwn-5d110d92961317c1f289396473be3c26d01f171c.tar.gz lwn-5d110d92961317c1f289396473be3c26d01f171c.zip |
staging/fwserial: Refer to fw_device as "node"
Signed-off-by: Peter Hurley <peter@hurleysoftware.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/fwserial/fwserial.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/fwserial/fwserial.c b/drivers/staging/fwserial/fwserial.c index 01257381ab5c..5f5474376fc4 100644 --- a/drivers/staging/fwserial/fwserial.c +++ b/drivers/staging/fwserial/fwserial.c @@ -174,7 +174,7 @@ static void dump_profile(struct seq_file *m, struct stats *stats) #define dump_profile(m, stats) #endif -/* Returns the max receive packet size for the given card */ +/* Returns the max receive packet size for the given node */ static inline int device_max_receive(struct fw_device *fw_device) { return 1 << (clamp_t(int, fw_device->max_rec, 8U, 11U) + 1); |