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
Kirill Smelkov
linux
Commits
8bda9722
Commit
8bda9722
authored
Apr 25, 2002
by
Kai Germaschewski
Browse files
Options
Browse Files
Download
Plain Diff
Merge
parents
7fb7f2ac
4b6c4e76
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
1 deletion
+18
-1
net/irda/ircomm/Makefile
net/irda/ircomm/Makefile
+2
-0
net/irda/ircomm/ircomm_core.c
net/irda/ircomm/ircomm_core.c
+16
-1
No files found.
net/irda/ircomm/Makefile
View file @
8bda9722
...
@@ -4,6 +4,8 @@
...
@@ -4,6 +4,8 @@
O_TARGET
:=
ircomm_and_tty.o
O_TARGET
:=
ircomm_and_tty.o
export-objs
:=
ircomm_core.o
ircomm-objs
:=
ircomm_core.o ircomm_event.o ircomm_lmp.o ircomm_ttp.o
ircomm-objs
:=
ircomm_core.o ircomm_event.o ircomm_lmp.o ircomm_ttp.o
ircomm-tty-objs
:=
ircomm_tty.o ircomm_tty_attach.o ircomm_tty_ioctl.o ircomm_param.o
ircomm-tty-objs
:=
ircomm_tty.o ircomm_tty_attach.o ircomm_tty_ioctl.o ircomm_param.o
...
...
net/irda/ircomm/ircomm_core.c
View file @
8bda9722
...
@@ -134,6 +134,8 @@ struct ircomm_cb *ircomm_open(notify_t *notify, __u8 service_type, int line)
...
@@ -134,6 +134,8 @@ struct ircomm_cb *ircomm_open(notify_t *notify, __u8 service_type, int line)
return
self
;
return
self
;
}
}
EXPORT_SYMBOL
(
ircomm_open
);
/*
/*
* Function ircomm_close_instance (self)
* Function ircomm_close_instance (self)
*
*
...
@@ -187,6 +189,8 @@ int ircomm_close(struct ircomm_cb *self)
...
@@ -187,6 +189,8 @@ int ircomm_close(struct ircomm_cb *self)
return
__ircomm_close
(
self
);
return
__ircomm_close
(
self
);
}
}
EXPORT_SYMBOL
(
ircomm_close
);
/*
/*
* Function ircomm_connect_request (self, service_type)
* Function ircomm_connect_request (self, service_type)
*
*
...
@@ -217,6 +221,8 @@ int ircomm_connect_request(struct ircomm_cb *self, __u8 dlsap_sel,
...
@@ -217,6 +221,8 @@ int ircomm_connect_request(struct ircomm_cb *self, __u8 dlsap_sel,
return
ret
;
return
ret
;
}
}
EXPORT_SYMBOL
(
ircomm_connect_request
);
/*
/*
* Function ircomm_connect_indication (self, qos, skb)
* Function ircomm_connect_indication (self, qos, skb)
*
*
...
@@ -269,6 +275,8 @@ int ircomm_connect_response(struct ircomm_cb *self, struct sk_buff *userdata)
...
@@ -269,6 +275,8 @@ int ircomm_connect_response(struct ircomm_cb *self, struct sk_buff *userdata)
return
ret
;
return
ret
;
}
}
EXPORT_SYMBOL
(
ircomm_connect_response
);
/*
/*
* Function connect_confirm (self, skb)
* Function connect_confirm (self, skb)
*
*
...
@@ -312,6 +320,8 @@ int ircomm_data_request(struct ircomm_cb *self, struct sk_buff *skb)
...
@@ -312,6 +320,8 @@ int ircomm_data_request(struct ircomm_cb *self, struct sk_buff *skb)
return
ret
;
return
ret
;
}
}
EXPORT_SYMBOL
(
ircomm_data_request
);
/*
/*
* Function ircomm_data_indication (self, skb)
* Function ircomm_data_indication (self, skb)
*
*
...
@@ -387,6 +397,8 @@ int ircomm_control_request(struct ircomm_cb *self, struct sk_buff *skb)
...
@@ -387,6 +397,8 @@ int ircomm_control_request(struct ircomm_cb *self, struct sk_buff *skb)
return
ret
;
return
ret
;
}
}
EXPORT_SYMBOL
(
ircomm_control_request
);
/*
/*
* Function ircomm_control_indication (self, skb)
* Function ircomm_control_indication (self, skb)
*
*
...
@@ -438,6 +450,8 @@ int ircomm_disconnect_request(struct ircomm_cb *self, struct sk_buff *userdata)
...
@@ -438,6 +450,8 @@ int ircomm_disconnect_request(struct ircomm_cb *self, struct sk_buff *userdata)
return
ret
;
return
ret
;
}
}
EXPORT_SYMBOL
(
ircomm_disconnect_request
);
/*
/*
* Function disconnect_indication (self, skb)
* Function disconnect_indication (self, skb)
*
*
...
@@ -479,6 +493,8 @@ void ircomm_flow_request(struct ircomm_cb *self, LOCAL_FLOW flow)
...
@@ -479,6 +493,8 @@ void ircomm_flow_request(struct ircomm_cb *self, LOCAL_FLOW flow)
irttp_flow_request
(
self
->
tsap
,
flow
);
irttp_flow_request
(
self
->
tsap
,
flow
);
}
}
EXPORT_SYMBOL
(
ircomm_flow_request
);
#ifdef CONFIG_PROC_FS
#ifdef CONFIG_PROC_FS
/*
/*
* Function ircomm_proc_read (buf, start, offset, len, unused)
* Function ircomm_proc_read (buf, start, offset, len, unused)
...
@@ -542,4 +558,3 @@ void cleanup_module(void)
...
@@ -542,4 +558,3 @@ void cleanup_module(void)
ircomm_cleanup
();
ircomm_cleanup
();
}
}
#endif
/* MODULE */
#endif
/* MODULE */
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