Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
41f321c2
Commit
41f321c2
authored
Jan 17, 2009
by
Stefan Richter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
firewire: core: clean up includes
Signed-off-by:
Stefan Richter
<
stefanr@s5r6.in-berlin.de
>
parent
81610b8f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
11 deletions
+22
-11
drivers/firewire/fw-device.c
drivers/firewire/fw-device.c
+11
-9
drivers/firewire/fw-device.h
drivers/firewire/fw-device.h
+11
-2
No files found.
drivers/firewire/fw-device.c
View file @
41f321c2
...
@@ -18,24 +18,26 @@
...
@@ -18,24 +18,26 @@
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
*/
#include <linux/module.h>
#include <linux/ctype.h>
#include <linux/wait.h>
#include <linux/errno.h>
#include <linux/kthread.h>
#include <linux/device.h>
#include <linux/delay.h>
#include <linux/delay.h>
#include <linux/device.h>
#include <linux/errno.h>
#include <linux/idr.h>
#include <linux/idr.h>
#include <linux/jiffies.h>
#include <linux/jiffies.h>
#include <linux/string.h>
#include <linux/kobject.h>
#include <linux/list.h>
#include <linux/mutex.h>
#include <linux/mutex.h>
#include <linux/rwsem.h>
#include <linux/rwsem.h>
#include <linux/semaphore.h>
#include <linux/semaphore.h>
#include <linux/spinlock.h>
#include <linux/spinlock.h>
#include <linux/string.h>
#include <linux/workqueue.h>
#include <asm/system.h>
#include <asm/system.h>
#include <linux/ctype.h>
#include "fw-transaction.h"
#include "fw-topology.h"
#include "fw-device.h"
#include "fw-device.h"
#include "fw-topology.h"
#include "fw-transaction.h"
void
fw_csr_iterator_init
(
struct
fw_csr_iterator
*
ci
,
u32
*
p
)
void
fw_csr_iterator_init
(
struct
fw_csr_iterator
*
ci
,
u32
*
p
)
{
{
...
...
drivers/firewire/fw-device.h
View file @
41f321c2
...
@@ -19,11 +19,17 @@
...
@@ -19,11 +19,17 @@
#ifndef __fw_device_h
#ifndef __fw_device_h
#define __fw_device_h
#define __fw_device_h
#include <linux/device.h>
#include <linux/fs.h>
#include <linux/fs.h>
#include <linux/cdev.h>
#include <linux/idr.h>
#include <linux/idr.h>
#include <linux/rwsem.h>
#include <linux/kernel.h>
#include <linux/list.h>
#include <linux/mutex.h>
#include <linux/mutex.h>
#include <linux/rwsem.h>
#include <linux/sysfs.h>
#include <linux/types.h>
#include <linux/workqueue.h>
#include <asm/atomic.h>
#include <asm/atomic.h>
enum
fw_device_state
{
enum
fw_device_state
{
...
@@ -39,6 +45,9 @@ struct fw_attribute_group {
...
@@ -39,6 +45,9 @@ struct fw_attribute_group {
struct
attribute
*
attrs
[
11
];
struct
attribute
*
attrs
[
11
];
};
};
struct
fw_node
;
struct
fw_card
;
/*
/*
* Note, fw_device.generation always has to be read before fw_device.node_id.
* Note, fw_device.generation always has to be read before fw_device.node_id.
* Use SMP memory barriers to ensure this. Otherwise requests will be sent
* Use SMP memory barriers to ensure this. Otherwise requests will be sent
...
...
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