Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
9a85d53c
Commit
9a85d53c
authored
Jul 06, 2013
by
Guenter Roeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hwmon: (ltc4245) Convert to use hwmon_device_register_with_groups
Signed-off-by:
Guenter Roeck
<
linux@roeck-us.net
>
parent
7258a125
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
54 deletions
+24
-54
drivers/hwmon/ltc4245.c
drivers/hwmon/ltc4245.c
+24
-54
No files found.
drivers/hwmon/ltc4245.c
View file @
9a85d53c
...
...
@@ -51,7 +51,9 @@ enum ltc4245_cmd {
};
struct
ltc4245_data
{
struct
device
*
hwmon_dev
;
struct
i2c_client
*
client
;
const
struct
attribute_group
*
groups
[
3
];
struct
mutex
update_lock
;
bool
valid
;
...
...
@@ -77,8 +79,8 @@ struct ltc4245_data {
*/
static
void
ltc4245_update_gpios
(
struct
device
*
dev
)
{
struct
i2c_client
*
client
=
to_i2c_client
(
dev
);
struct
ltc4245_data
*
data
=
i2c_get_clientdata
(
client
)
;
struct
ltc4245_data
*
data
=
dev_get_drvdata
(
dev
);
struct
i2c_client
*
client
=
data
->
client
;
u8
gpio_curr
,
gpio_next
,
gpio_reg
;
int
i
;
...
...
@@ -130,8 +132,8 @@ static void ltc4245_update_gpios(struct device *dev)
static
struct
ltc4245_data
*
ltc4245_update_device
(
struct
device
*
dev
)
{
struct
i2c_client
*
client
=
to_i2c_client
(
dev
);
struct
ltc4245_data
*
data
=
i2c_get_clientdata
(
client
)
;
struct
ltc4245_data
*
data
=
dev_get_drvdata
(
dev
);
struct
i2c_client
*
client
=
data
->
client
;
s32
val
;
int
i
;
...
...
@@ -455,41 +457,14 @@ static const struct attribute_group ltc4245_gpio_group = {
.
attrs
=
ltc4245_gpio_attributes
,
};
static
int
ltc4245_sysfs_create_groups
(
struct
i2c_client
*
client
)
static
void
ltc4245_sysfs_add_groups
(
struct
ltc4245_data
*
data
)
{
struct
ltc4245_data
*
data
=
i2c_get_clientdata
(
client
);
struct
device
*
dev
=
&
client
->
dev
;
int
ret
;
/* register the standard sysfs attributes */
ret
=
sysfs_create_group
(
&
dev
->
kobj
,
&
ltc4245_std_group
);
if
(
ret
)
{
dev_err
(
dev
,
"unable to register standard attributes
\n
"
);
return
ret
;
}
/* standard sysfs attributes */
data
->
groups
[
0
]
=
&
ltc4245_std_group
;
/* if we're using the extra gpio support, register it's attributes */
if
(
data
->
use_extra_gpios
)
{
ret
=
sysfs_create_group
(
&
dev
->
kobj
,
&
ltc4245_gpio_group
);
if
(
ret
)
{
dev_err
(
dev
,
"unable to register gpio attributes
\n
"
);
sysfs_remove_group
(
&
dev
->
kobj
,
&
ltc4245_std_group
);
return
ret
;
}
}
return
0
;
}
static
void
ltc4245_sysfs_remove_groups
(
struct
i2c_client
*
client
)
{
struct
ltc4245_data
*
data
=
i2c_get_clientdata
(
client
);
struct
device
*
dev
=
&
client
->
dev
;
if
(
data
->
use_extra_gpios
)
sysfs_remove_group
(
&
dev
->
kobj
,
&
ltc4245_gpio_group
);
sysfs_remove_group
(
&
dev
->
kobj
,
&
ltc4245_std_group
);
data
->
groups
[
1
]
=
&
ltc4245_gpio_group
;
}
static
bool
ltc4245_use_extra_gpios
(
struct
i2c_client
*
client
)
...
...
@@ -517,7 +492,7 @@ static int ltc4245_probe(struct i2c_client *client,
{
struct
i2c_adapter
*
adapter
=
client
->
adapter
;
struct
ltc4245_data
*
data
;
int
ret
;
struct
device
*
hwmon_dev
;
if
(
!
i2c_check_functionality
(
adapter
,
I2C_FUNC_SMBUS_BYTE_DATA
))
return
-
ENODEV
;
...
...
@@ -526,7 +501,7 @@ static int ltc4245_probe(struct i2c_client *client,
if
(
!
data
)
return
-
ENOMEM
;
i2c_set_clientdata
(
client
,
data
)
;
data
->
client
=
client
;
mutex_init
(
&
data
->
update_lock
);
data
->
use_extra_gpios
=
ltc4245_use_extra_gpios
(
client
);
...
...
@@ -534,30 +509,25 @@ static int ltc4245_probe(struct i2c_client *client,
i2c_smbus_write_byte_data
(
client
,
LTC4245_FAULT1
,
0x00
);
i2c_smbus_write_byte_data
(
client
,
LTC4245_FAULT2
,
0x00
);
/* Register sysfs hooks */
ret
=
ltc4245_sysfs_create_groups
(
client
);
if
(
ret
)
return
ret
;
/* Add sysfs hooks */
ltc4245_sysfs_add_groups
(
data
);
data
->
hwmon_dev
=
hwmon_device_register
(
&
client
->
dev
);
if
(
IS_ERR
(
data
->
hwmon_dev
))
{
ret
=
PTR_ERR
(
data
->
hwmon_dev
);
goto
out_hwmon_device_register
;
}
hwmon_dev
=
hwmon_device_register_with_groups
(
&
client
->
dev
,
client
->
name
,
data
,
data
->
groups
);
if
(
IS_ERR
(
hwmon_dev
))
return
PTR_ERR
(
hwmon_dev
);
return
0
;
i2c_set_clientdata
(
client
,
hwmon_dev
)
;
out_hwmon_device_register:
ltc4245_sysfs_remove_groups
(
client
);
return
ret
;
return
0
;
}
static
int
ltc4245_remove
(
struct
i2c_client
*
client
)
{
struct
ltc4245_data
*
data
=
i2c_get_clientdata
(
client
);
struct
device
*
hwmon_dev
=
i2c_get_clientdata
(
client
);
hwmon_device_unregister
(
data
->
hwmon_dev
);
ltc4245_sysfs_remove_groups
(
client
);
hwmon_device_unregister
(
hwmon_dev
);
return
0
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment