diff options
Diffstat (limited to 'include/linux/atmdev.h')
-rw-r--r-- | include/linux/atmdev.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/linux/atmdev.h b/include/linux/atmdev.h index b203ea82a0a..2096e5c7282 100644 --- a/include/linux/atmdev.h +++ b/include/linux/atmdev.h | |||
@@ -209,7 +209,7 @@ struct atm_cirange { | |||
209 | 209 | ||
210 | #ifdef __KERNEL__ | 210 | #ifdef __KERNEL__ |
211 | 211 | ||
212 | #include <linux/config.h> | 212 | #include <linux/device.h> |
213 | #include <linux/wait.h> /* wait_queue_head_t */ | 213 | #include <linux/wait.h> /* wait_queue_head_t */ |
214 | #include <linux/time.h> /* struct timeval */ | 214 | #include <linux/time.h> /* struct timeval */ |
215 | #include <linux/net.h> | 215 | #include <linux/net.h> |
@@ -359,6 +359,7 @@ struct atm_dev { | |||
359 | struct proc_dir_entry *proc_entry; /* proc entry */ | 359 | struct proc_dir_entry *proc_entry; /* proc entry */ |
360 | char *proc_name; /* proc entry name */ | 360 | char *proc_name; /* proc entry name */ |
361 | #endif | 361 | #endif |
362 | struct class_device class_dev; /* sysfs class device */ | ||
362 | struct list_head dev_list; /* linkage */ | 363 | struct list_head dev_list; /* linkage */ |
363 | }; | 364 | }; |
364 | 365 | ||
@@ -460,7 +461,7 @@ static inline void atm_dev_put(struct atm_dev *dev) | |||
460 | BUG_ON(!test_bit(ATM_DF_REMOVED, &dev->flags)); | 461 | BUG_ON(!test_bit(ATM_DF_REMOVED, &dev->flags)); |
461 | if (dev->ops->dev_close) | 462 | if (dev->ops->dev_close) |
462 | dev->ops->dev_close(dev); | 463 | dev->ops->dev_close(dev); |
463 | kfree(dev); | 464 | class_device_put(&dev->class_dev); |
464 | } | 465 | } |
465 | } | 466 | } |
466 | 467 | ||