mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-14 16:47:32 +07:00
w1: ds2760 and ds2780, use ida for id and ida_simple_get() to get it
Straightforward. As an aside, the ida_init calls are not needed as far as I can see needed. (DEFINE_IDA does the same already). Signed-off-by: Jonathan Cameron <jic23@cam.ac.uk> Cc: Evgeniy Polyakov <zbr@ioremap.net> Acked-by: Clifton Barnes <cabarnes@indesign-llc.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
79bc57463b
commit
3e5428177c
@ -114,43 +114,7 @@ static struct bin_attribute w1_ds2760_bin_attr = {
|
|||||||
.read = w1_ds2760_read_bin,
|
.read = w1_ds2760_read_bin,
|
||||||
};
|
};
|
||||||
|
|
||||||
static DEFINE_IDR(bat_idr);
|
static DEFINE_IDA(bat_ida);
|
||||||
static DEFINE_MUTEX(bat_idr_lock);
|
|
||||||
|
|
||||||
static int new_bat_id(void)
|
|
||||||
{
|
|
||||||
int ret;
|
|
||||||
|
|
||||||
while (1) {
|
|
||||||
int id;
|
|
||||||
|
|
||||||
ret = idr_pre_get(&bat_idr, GFP_KERNEL);
|
|
||||||
if (ret == 0)
|
|
||||||
return -ENOMEM;
|
|
||||||
|
|
||||||
mutex_lock(&bat_idr_lock);
|
|
||||||
ret = idr_get_new(&bat_idr, NULL, &id);
|
|
||||||
mutex_unlock(&bat_idr_lock);
|
|
||||||
|
|
||||||
if (ret == 0) {
|
|
||||||
ret = id & MAX_ID_MASK;
|
|
||||||
break;
|
|
||||||
} else if (ret == -EAGAIN) {
|
|
||||||
continue;
|
|
||||||
} else {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void release_bat_id(int id)
|
|
||||||
{
|
|
||||||
mutex_lock(&bat_idr_lock);
|
|
||||||
idr_remove(&bat_idr, id);
|
|
||||||
mutex_unlock(&bat_idr_lock);
|
|
||||||
}
|
|
||||||
|
|
||||||
static int w1_ds2760_add_slave(struct w1_slave *sl)
|
static int w1_ds2760_add_slave(struct w1_slave *sl)
|
||||||
{
|
{
|
||||||
@ -158,7 +122,7 @@ static int w1_ds2760_add_slave(struct w1_slave *sl)
|
|||||||
int id;
|
int id;
|
||||||
struct platform_device *pdev;
|
struct platform_device *pdev;
|
||||||
|
|
||||||
id = new_bat_id();
|
id = ida_simple_get(&bat_ida, 0, 0, GFP_KERNEL);
|
||||||
if (id < 0) {
|
if (id < 0) {
|
||||||
ret = id;
|
ret = id;
|
||||||
goto noid;
|
goto noid;
|
||||||
@ -187,7 +151,7 @@ static int w1_ds2760_add_slave(struct w1_slave *sl)
|
|||||||
pdev_add_failed:
|
pdev_add_failed:
|
||||||
platform_device_unregister(pdev);
|
platform_device_unregister(pdev);
|
||||||
pdev_alloc_failed:
|
pdev_alloc_failed:
|
||||||
release_bat_id(id);
|
ida_simple_remove(&bat_ida, id);
|
||||||
noid:
|
noid:
|
||||||
success:
|
success:
|
||||||
return ret;
|
return ret;
|
||||||
@ -199,7 +163,7 @@ static void w1_ds2760_remove_slave(struct w1_slave *sl)
|
|||||||
int id = pdev->id;
|
int id = pdev->id;
|
||||||
|
|
||||||
platform_device_unregister(pdev);
|
platform_device_unregister(pdev);
|
||||||
release_bat_id(id);
|
ida_simple_remove(&bat_ida, id);
|
||||||
sysfs_remove_bin_file(&sl->dev.kobj, &w1_ds2760_bin_attr);
|
sysfs_remove_bin_file(&sl->dev.kobj, &w1_ds2760_bin_attr);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -217,14 +181,14 @@ static int __init w1_ds2760_init(void)
|
|||||||
{
|
{
|
||||||
printk(KERN_INFO "1-Wire driver for the DS2760 battery monitor "
|
printk(KERN_INFO "1-Wire driver for the DS2760 battery monitor "
|
||||||
" chip - (c) 2004-2005, Szabolcs Gyurko\n");
|
" chip - (c) 2004-2005, Szabolcs Gyurko\n");
|
||||||
idr_init(&bat_idr);
|
ida_init(&bat_ida);
|
||||||
return w1_register_family(&w1_ds2760_family);
|
return w1_register_family(&w1_ds2760_family);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void __exit w1_ds2760_exit(void)
|
static void __exit w1_ds2760_exit(void)
|
||||||
{
|
{
|
||||||
w1_unregister_family(&w1_ds2760_family);
|
w1_unregister_family(&w1_ds2760_family);
|
||||||
idr_destroy(&bat_idr);
|
ida_destroy(&bat_ida);
|
||||||
}
|
}
|
||||||
|
|
||||||
EXPORT_SYMBOL(w1_ds2760_read);
|
EXPORT_SYMBOL(w1_ds2760_read);
|
||||||
|
@ -99,43 +99,7 @@ static struct bin_attribute w1_ds2780_bin_attr = {
|
|||||||
.read = w1_ds2780_read_bin,
|
.read = w1_ds2780_read_bin,
|
||||||
};
|
};
|
||||||
|
|
||||||
static DEFINE_IDR(bat_idr);
|
static DEFINE_IDA(bat_ida);
|
||||||
static DEFINE_MUTEX(bat_idr_lock);
|
|
||||||
|
|
||||||
static int new_bat_id(void)
|
|
||||||
{
|
|
||||||
int ret;
|
|
||||||
|
|
||||||
while (1) {
|
|
||||||
int id;
|
|
||||||
|
|
||||||
ret = idr_pre_get(&bat_idr, GFP_KERNEL);
|
|
||||||
if (ret == 0)
|
|
||||||
return -ENOMEM;
|
|
||||||
|
|
||||||
mutex_lock(&bat_idr_lock);
|
|
||||||
ret = idr_get_new(&bat_idr, NULL, &id);
|
|
||||||
mutex_unlock(&bat_idr_lock);
|
|
||||||
|
|
||||||
if (ret == 0) {
|
|
||||||
ret = id & MAX_ID_MASK;
|
|
||||||
break;
|
|
||||||
} else if (ret == -EAGAIN) {
|
|
||||||
continue;
|
|
||||||
} else {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void release_bat_id(int id)
|
|
||||||
{
|
|
||||||
mutex_lock(&bat_idr_lock);
|
|
||||||
idr_remove(&bat_idr, id);
|
|
||||||
mutex_unlock(&bat_idr_lock);
|
|
||||||
}
|
|
||||||
|
|
||||||
static int w1_ds2780_add_slave(struct w1_slave *sl)
|
static int w1_ds2780_add_slave(struct w1_slave *sl)
|
||||||
{
|
{
|
||||||
@ -143,7 +107,7 @@ static int w1_ds2780_add_slave(struct w1_slave *sl)
|
|||||||
int id;
|
int id;
|
||||||
struct platform_device *pdev;
|
struct platform_device *pdev;
|
||||||
|
|
||||||
id = new_bat_id();
|
id = ida_simple_get(&bat_ida, 0, 0, GFP_KERNEL);
|
||||||
if (id < 0) {
|
if (id < 0) {
|
||||||
ret = id;
|
ret = id;
|
||||||
goto noid;
|
goto noid;
|
||||||
@ -172,7 +136,7 @@ static int w1_ds2780_add_slave(struct w1_slave *sl)
|
|||||||
pdev_add_failed:
|
pdev_add_failed:
|
||||||
platform_device_unregister(pdev);
|
platform_device_unregister(pdev);
|
||||||
pdev_alloc_failed:
|
pdev_alloc_failed:
|
||||||
release_bat_id(id);
|
ida_simple_remove(&bat_ida, id);
|
||||||
noid:
|
noid:
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
@ -183,7 +147,7 @@ static void w1_ds2780_remove_slave(struct w1_slave *sl)
|
|||||||
int id = pdev->id;
|
int id = pdev->id;
|
||||||
|
|
||||||
platform_device_unregister(pdev);
|
platform_device_unregister(pdev);
|
||||||
release_bat_id(id);
|
ida_simple_remove(&bat_ida, id);
|
||||||
sysfs_remove_bin_file(&sl->dev.kobj, &w1_ds2780_bin_attr);
|
sysfs_remove_bin_file(&sl->dev.kobj, &w1_ds2780_bin_attr);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -199,14 +163,14 @@ static struct w1_family w1_ds2780_family = {
|
|||||||
|
|
||||||
static int __init w1_ds2780_init(void)
|
static int __init w1_ds2780_init(void)
|
||||||
{
|
{
|
||||||
idr_init(&bat_idr);
|
ida_init(&bat_ida);
|
||||||
return w1_register_family(&w1_ds2780_family);
|
return w1_register_family(&w1_ds2780_family);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void __exit w1_ds2780_exit(void)
|
static void __exit w1_ds2780_exit(void)
|
||||||
{
|
{
|
||||||
w1_unregister_family(&w1_ds2780_family);
|
w1_unregister_family(&w1_ds2780_family);
|
||||||
idr_destroy(&bat_idr);
|
ida_destroy(&bat_ida);
|
||||||
}
|
}
|
||||||
|
|
||||||
module_init(w1_ds2780_init);
|
module_init(w1_ds2780_init);
|
||||||
|
Loading…
Reference in New Issue
Block a user