diff options
| author | Jeff Garzik <jgarzik@pobox.com> | 2005-09-08 05:37:58 -0400 |
|---|---|---|
| committer | Jeff Garzik <jgarzik@pobox.com> | 2005-09-08 05:37:58 -0400 |
| commit | 5a2cec83a9bb1b4295aa8ab728fcb8ca1811a33c (patch) | |
| tree | 2f83dc6949763e77cf6422e696dc6146684dcf4e /drivers/ieee1394/nodemgr.c | |
| parent | f2c853bca542f5ac0b036377637192a74f2091c2 (diff) | |
| parent | caf39e87cc1182f7dae84eefc43ca14d54c78ef9 (diff) | |
Merge /spare/repo/linux-2.6/
Diffstat (limited to 'drivers/ieee1394/nodemgr.c')
| -rw-r--r-- | drivers/ieee1394/nodemgr.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/ieee1394/nodemgr.c b/drivers/ieee1394/nodemgr.c index bebcc47ab06c..b23322523ef5 100644 --- a/drivers/ieee1394/nodemgr.c +++ b/drivers/ieee1394/nodemgr.c | |||
| @@ -1068,6 +1068,8 @@ static int nodemgr_hotplug(struct class_device *cdev, char **envp, int num_envp, | |||
| 1068 | struct unit_directory *ud; | 1068 | struct unit_directory *ud; |
| 1069 | int i = 0; | 1069 | int i = 0; |
| 1070 | int length = 0; | 1070 | int length = 0; |
| 1071 | /* ieee1394:venNmoNspNverN */ | ||
| 1072 | char buf[8 + 1 + 3 + 8 + 2 + 8 + 2 + 8 + 3 + 8 + 1]; | ||
| 1071 | 1073 | ||
| 1072 | if (!cdev) | 1074 | if (!cdev) |
| 1073 | return -ENODEV; | 1075 | return -ENODEV; |
| @@ -1094,6 +1096,12 @@ do { \ | |||
| 1094 | PUT_ENVP("GUID=%016Lx", (unsigned long long)ud->ne->guid); | 1096 | PUT_ENVP("GUID=%016Lx", (unsigned long long)ud->ne->guid); |
| 1095 | PUT_ENVP("SPECIFIER_ID=%06x", ud->specifier_id); | 1097 | PUT_ENVP("SPECIFIER_ID=%06x", ud->specifier_id); |
| 1096 | PUT_ENVP("VERSION=%06x", ud->version); | 1098 | PUT_ENVP("VERSION=%06x", ud->version); |
| 1099 | snprintf(buf, sizeof(buf), "ieee1394:ven%08Xmo%08Xsp%08Xver%08X", | ||
| 1100 | ud->vendor_id, | ||
| 1101 | ud->model_id, | ||
| 1102 | ud->specifier_id, | ||
| 1103 | ud->version); | ||
| 1104 | PUT_ENVP("MODALIAS=%s", buf); | ||
| 1097 | 1105 | ||
| 1098 | #undef PUT_ENVP | 1106 | #undef PUT_ENVP |
| 1099 | 1107 | ||
