~andrikos/ubuntu/quantal/fglrx-installer/fix-switch-to-igpu

« back to all changes in this revision

Viewing changes to lib/modules/fglrx/build_mod/kcl_debug.h

  • Committer: Package Import Robot
  • Author(s): Alberto Milone
  • Date: 2012-09-10 14:00:35 UTC
  • mfrom: (1.1.26)
  • Revision ID: package-import@ubuntu.com-20120910140035-1f2166u2gdi05clm
Tags: 2:8.982-0ubuntu1
* New upstream release (LP: #1039397).
* debian/control:
  - Conflict with/replace/provide nvidia and fglrx. This will make
    sure that other binary drivers cannot be installed at the same
    time. This is required by the new restricted drivers UI.
* debian/rules:
  - Make sure to call the "serverabi" phony target.
  - Hardcode the X ABI to 11.

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
int ATI_API_CALL KCL_DEBUG_RegKbdHandler(int enable);
79
79
int ATI_API_CALL KCL_DEBUG_RegKbdDumpHandler(int enable);
80
80
void ATI_API_CALL KCL_DEBUG_OsDump(void);
 
81
unsigned ATI_API_CALL KCL_DEBUG_StackTag(void);
 
82
unsigned ATI_API_CALL KCL_DEBUG_StackMeasure(void);
81
83
 
82
84
#ifdef SPECIAL
83
85
#undef SPECIAL
85
87
#ifdef ERROR
86
88
#undef ERROR
87
89
#endif
88
 
#ifdef WARN
89
 
#undef WARN
 
90
#ifdef DWARN
 
91
#undef DWARN
90
92
#endif
91
93
#ifdef INFO
92
94
#undef INFO
127
129
{
128
130
    SPECIAL = 0,
129
131
    ERROR  ,
130
 
    WARN  ,
 
132
    DWARN  ,
131
133
    INFO ,
132
134
    INFOEX,
133
135
    TRACE,
165
167
}log_map;
166
168
 
167
169
 
168
 
#define DEFAULT_LOG_LEVEL ((U08)(___BIT(INFO) | ___BIT(INFOEX) |___BIT(ERROR) |___BIT(WARN) | ___BIT(TRACE)| ___BIT(SPECIAL)  ))
 
170
#define DEFAULT_LOG_LEVEL ((U08)(___BIT(INFO) | ___BIT(INFOEX) |___BIT(ERROR) |___BIT(DWARN) | ___BIT(TRACE)| ___BIT(SPECIAL)  ))
169
171
#define INFO_LOG_LEVEL ((U08)(___BIT(INFO) | ___BIT(INFOEX)))
170
172
extern const log_map module_log_map[];
171
173
extern const module_map module_type_map[];