Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
etherlabmaster
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ICS Control System Infrastructure
etherlabmaster
Commits
e609b4c4
Commit
e609b4c4
authored
18 years ago
by
Florian Pose
Browse files
Options
Downloads
Patches
Plain Diff
Removed varsized_fields
parent
4b7ffc5a
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
master/slave.c
+0
-8
0 additions, 8 deletions
master/slave.c
master/slave.h
+1
-4
1 addition, 4 deletions
master/slave.h
with
1 addition
and
12 deletions
master/slave.c
+
0
−
8
View file @
e609b4c4
...
...
@@ -156,7 +156,6 @@ int ec_slave_init(ec_slave_t *slave, /**< EtherCAT slave */
INIT_LIST_HEAD
(
&
slave
->
sii_pdos
);
INIT_LIST_HEAD
(
&
slave
->
sdo_dictionary
);
INIT_LIST_HEAD
(
&
slave
->
sdo_confs
);
INIT_LIST_HEAD
(
&
slave
->
varsize_fields
);
for
(
i
=
0
;
i
<
4
;
i
++
)
{
slave
->
dl_link
[
i
]
=
0
;
...
...
@@ -184,7 +183,6 @@ void ec_slave_clear(struct kobject *kobj /**< kobject of the slave */)
ec_sdo_t
*
sdo
,
*
next_sdo
;
ec_sdo_entry_t
*
en
,
*
next_en
;
ec_sdo_data_t
*
sdodata
,
*
next_sdodata
;
ec_varsize_t
*
var
,
*
next_var
;
slave
=
container_of
(
kobj
,
ec_slave_t
,
kobj
);
...
...
@@ -240,12 +238,6 @@ void ec_slave_clear(struct kobject *kobj /**< kobject of the slave */)
kfree
(
sdodata
);
}
// free information about variable sized data fields
list_for_each_entry_safe
(
var
,
next_var
,
&
slave
->
varsize_fields
,
list
)
{
list_del
(
&
var
->
list
);
kfree
(
var
);
}
if
(
slave
->
eeprom_data
)
kfree
(
slave
->
eeprom_data
);
if
(
slave
->
new_eeprom_data
)
kfree
(
slave
->
new_eeprom_data
);
}
...
...
This diff is collapsed.
Click to expand it.
master/slave.h
+
1
−
4
View file @
e609b4c4
...
...
@@ -302,11 +302,8 @@ struct ec_slave
ec_fmmu_t
fmmus
[
EC_MAX_FMMUS
];
/**< FMMU configurations */
uint8_t
fmmu_count
;
/**< number of FMMUs used */
struct
list_head
sdo_dictionary
;
/**< SDO di
recto
ry list */
struct
list_head
sdo_dictionary
;
/**< SDO di
ctiona
ry list */
struct
list_head
sdo_confs
;
/**< list of SDO configurations */
struct
list_head
varsize_fields
;
/**< size information for variable-sized
data fields. */
};
/*****************************************************************************/
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment