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
4a9bdcd1
Commit
4a9bdcd1
authored
Oct 07, 2002
by
Dave Jones
Committed by
Linus Torvalds
Oct 07, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] numerous __FUNCTION__ pasting fixes
parent
b8ba9914
Changes
8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
83 additions
and
89 deletions
+83
-89
drivers/atm/firestream.c
drivers/atm/firestream.c
+2
-2
drivers/char/generic_serial.c
drivers/char/generic_serial.c
+2
-2
drivers/char/sx.c
drivers/char/sx.c
+4
-4
drivers/media/video/cpia.h
drivers/media/video/cpia.h
+1
-1
drivers/media/video/cpia_usb.c
drivers/media/video/cpia_usb.c
+1
-1
drivers/net/gt96100eth.c
drivers/net/gt96100eth.c
+67
-73
drivers/net/wan/cycx_drv.c
drivers/net/wan/cycx_drv.c
+5
-5
drivers/net/wan/cycx_x25.c
drivers/net/wan/cycx_x25.c
+1
-1
No files found.
drivers/atm/firestream.c
View file @
4a9bdcd1
...
...
@@ -330,8 +330,8 @@ MODULE_PARM(fs_keystream, "i");
#define FS_DEBUG_QSIZE 0x00001000
#define func_enter() fs_dprintk (FS_DEBUG_FLOW, "fs: enter
" __FUNCTION__ "\n"
)
#define func_exit() fs_dprintk (FS_DEBUG_FLOW, "fs: exit
" __FUNCTION__ "\n"
)
#define func_enter() fs_dprintk (FS_DEBUG_FLOW, "fs: enter
%s\n", __FUNCTION__
)
#define func_exit() fs_dprintk (FS_DEBUG_FLOW, "fs: exit
%s\n", __FUNCTION__
)
struct
fs_dev
*
fs_boards
=
NULL
;
...
...
drivers/char/generic_serial.c
View file @
4a9bdcd1
...
...
@@ -41,8 +41,8 @@ static int gs_debug;
#define gs_dprintk(f, str...)
/* nothing */
#endif
#define func_enter() gs_dprintk (GS_DEBUG_FLOW, "gs: enter
" __FUNCTION__ "\n"
)
#define func_exit() gs_dprintk (GS_DEBUG_FLOW, "gs: exit
" __FUNCTION__ "\n"
)
#define func_enter() gs_dprintk (GS_DEBUG_FLOW, "gs: enter
%s\n", __FUNCTION__
)
#define func_exit() gs_dprintk (GS_DEBUG_FLOW, "gs: exit
%s\n", __FUNCTION__
)
#if NEW_WRITE_LOCKING
#define DECL
/* Nothing */
...
...
drivers/char/sx.c
View file @
4a9bdcd1
...
...
@@ -404,11 +404,11 @@ static struct real_driver sx_real_driver = {
#define func_enter() sx_dprintk (SX_DEBUG_FLOW, "sx: enter
" __FUNCTION__ "\n"
)
#define func_exit() sx_dprintk (SX_DEBUG_FLOW, "sx: exit
" __FUNCTION__ "\n"
)
#define func_enter() sx_dprintk (SX_DEBUG_FLOW, "sx: enter
%s\b",__FUNCTION__
)
#define func_exit() sx_dprintk (SX_DEBUG_FLOW, "sx: exit
%s\n", __FUNCTION__
)
#define func_enter2() sx_dprintk (SX_DEBUG_FLOW, "sx: enter
" __FUNCTION__
\
"(port %d)\n"
, port->line)
#define func_enter2() sx_dprintk (SX_DEBUG_FLOW, "sx: enter
%s (port %d)\n",
\
__FUNCTION__
, port->line)
...
...
drivers/media/video/cpia.h
View file @
4a9bdcd1
...
...
@@ -379,7 +379,7 @@ void cpia_unregister_camera(struct cam_data *cam);
#define ERROR_FLICKER_BELOW_MIN_EXP 0x01
/*flicker exposure got below minimum exposure */
#define ALOG(lineno,fmt,args...) printk(fmt,lineno,##args)
#define LOG(fmt,args...) ALOG((__LINE__),KERN_INFO __FILE__":
"__FUNCTION__"(%d):"fmt,
##args)
#define LOG(fmt,args...) ALOG((__LINE__),KERN_INFO __FILE__":
%s(%d):"fmt, __FUNCTION__,
##args)
#ifdef _CPIA_DEBUG_
#define ADBG(lineno,fmt,args...) printk(fmt, jiffies, lineno, ##args)
...
...
drivers/media/video/cpia_usb.c
View file @
4a9bdcd1
...
...
@@ -167,7 +167,7 @@ static void cpia_usb_complete(struct urb *urb)
/* resubmit */
urb
->
dev
=
ucpia
->
dev
;
if
((
i
=
usb_submit_urb
(
urb
,
GFP_ATOMIC
))
!=
0
)
printk
(
KERN_ERR
__FUNCTION__
": usb_submit_urb ret %d
\n
"
,
i
);
printk
(
KERN_ERR
"%s: usb_submit_urb ret %d
\n
"
,
__FUNCTION__
,
i
);
}
static
int
cpia_usb_open
(
void
*
privdata
)
...
...
drivers/net/gt96100eth.c
View file @
4a9bdcd1
This diff is collapsed.
Click to expand it.
drivers/net/wan/cycx_drv.c
View file @
4a9bdcd1
...
...
@@ -423,9 +423,9 @@ static int load_cyc2x(cycxhw_t *hw, cfm_t *cfm, u32 len)
/* Verify firmware module format version */
if
(
cfm
->
version
!=
CFM_VERSION
)
{
printk
(
KERN_ERR
"%s:
"
__FUNCTION__
"
: firmware format %u rejected! "
printk
(
KERN_ERR
"%s:
%s
: firmware format %u rejected! "
"Expecting %u.
\n
"
,
modname
,
cfm
->
version
,
CFM_VERSION
);
modname
,
__FUNCTION__
,
cfm
->
version
,
CFM_VERSION
);
return
-
EINVAL
;
}
...
...
@@ -437,8 +437,8 @@ static int load_cyc2x(cycxhw_t *hw, cfm_t *cfm, u32 len)
if (((len - sizeof(cfm_t) - 1) != cfm->info.codesize) ||
*/
if
(
cksum
!=
cfm
->
checksum
)
{
printk
(
KERN_ERR
"%s:
"
__FUNCTION__
"
: firmware corrupted!
\n
"
,
modname
);
printk
(
KERN_ERR
"%s:
%s
: firmware corrupted!
\n
"
,
modname
,
__FUNCTION__
);
printk
(
KERN_ERR
" cdsize = 0x%x (expected 0x%lx)
\n
"
,
len
-
sizeof
(
cfm_t
)
-
1
,
cfm
->
info
.
codesize
);
printk
(
KERN_ERR
" chksum = 0x%x (expected 0x%x)
\n
"
,
...
...
@@ -450,7 +450,7 @@ static int load_cyc2x(cycxhw_t *hw, cfm_t *cfm, u32 len)
img_hdr
=
(
cycx_header_t
*
)(((
u8
*
)
cfm
)
+
sizeof
(
cfm_t
)
-
1
);
#ifdef FIRMWARE_DEBUG
printk
(
KERN_INFO
"%s:
"
__FUNCTION__
": image sizes
\n
"
,
modname
);
printk
(
KERN_INFO
"%s:
%s: image sizes
\n
"
,
__FUNCTION__
,
modname
);
printk
(
KERN_INFO
" reset=%lu
\n
"
,
img_hdr
->
reset_size
);
printk
(
KERN_INFO
" data=%lu
\n
"
,
img_hdr
->
data_size
);
printk
(
KERN_INFO
" code=%lu
\n
"
,
img_hdr
->
code_size
);
...
...
drivers/net/wan/cycx_x25.c
View file @
4a9bdcd1
...
...
@@ -1446,7 +1446,7 @@ static void chan_x25_send_event(struct net_device *dev, u8 event)
unsigned
char
*
ptr
;
if
((
skb
=
dev_alloc_skb
(
1
))
==
NULL
)
{
printk
(
KERN_ERR
__FUNCTION__
": out of memory
\n
"
);
printk
(
KERN_ERR
"%s: out of memory
\n
"
,
__FUNCTION__
);
return
;
}
...
...
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