X-Git-Url: http://pilppa.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=include%2Flinux%2Fatmdev.h;h=a3d07c29d16c65bc97b25027e15c6c5dbfe10c62;hb=8dca7ffe2cdbcf8a2f188c8230044c3225b70418;hp=b203ea82a0a8b8db8e13613d15eca2d764b900bf;hpb=3d5271f9883cba7b54762bc4fe027d4172f06db7;p=linux-2.6-omap-h63xx.git diff --git a/include/linux/atmdev.h b/include/linux/atmdev.h index b203ea82a0a..a3d07c29d16 100644 --- a/include/linux/atmdev.h +++ b/include/linux/atmdev.h @@ -209,7 +209,7 @@ struct atm_cirange { #ifdef __KERNEL__ -#include +#include #include /* wait_queue_head_t */ #include /* struct timeval */ #include @@ -359,6 +359,7 @@ struct atm_dev { struct proc_dir_entry *proc_entry; /* proc entry */ char *proc_name; /* proc entry name */ #endif + struct device class_dev; /* sysfs device */ struct list_head dev_list; /* linkage */ }; @@ -460,7 +461,7 @@ static inline void atm_dev_put(struct atm_dev *dev) BUG_ON(!test_bit(ATM_DF_REMOVED, &dev->flags)); if (dev->ops->dev_close) dev->ops->dev_close(dev); - kfree(dev); + put_device(&dev->class_dev); } }