/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _LINUX_TRACE_H #define _LINUX_TRACE_H #ifdef CONFIG_TRACING /* * The trace export - an export of Ftrace output. The trace_export * can process traces and export them to a registered destination as * an addition to the current only output of Ftrace - i.e. ring buffer. * * If you want traces to be sent to some other place rather than ring * buffer only, just need to register a new trace_export and implement * its own .write() function for writing traces to the storage. * * next - pointer to the next trace_export * write - copy traces which have been delt with ->commit() to * the destination */ struct trace_export { struct trace_export __rcu *next; void (*write)(struct trace_export *, const void *, unsigned int); }; int register_ftrace_export(struct trace_export *export); int unregister_ftrace_export(struct trace_export *export); struct trace_array; void trace_printk_init_buffers(void); int trace_array_printk(struct trace_array *tr, unsigned long ip, const char *fmt, ...); void trace_array_put(struct trace_array *tr); struct trace_array *trace_array_get_by_name(const char *name); int trace_array_destroy(struct trace_array *tr); #endif /* CONFIG_TRACING */ #endif /* _LINUX_TRACE_H */ value='linux-2.6.15.y'>linux-2.6.15.y Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/drivers/net/wireless/wl12xx/wl1271_init.c
AgeCommit message (Expand)Author
2010-02-19wl1271: add most of the normal initialization commands to PLT modeLuciano Coelho
2010-02-19wl1271: modify wl1271_acx_tid_cfg() to use function parametersKalle Valo
2010-02-19wl1271: modify wl1271_acx_ac_cfg() to use function parametersKalle Valo
2009-12-28wl1271: Add support for acx_pm_configJuuso Oikarinen
2009-12-28wl1271: Fix supported rate managementJuuso Oikarinen
2009-12-28wl1271: Use slow rates for association messagesJuuso Oikarinen
2009-12-28wl1271: Remove smart reflex ACXJuuso Oikarinen
2009-12-28wl1271: use channel 1 when configuring the data pathLuciano Coelho
2009-12-28wl1271: implement dco itrim parameters settingLuciano Coelho
2009-12-28wl1271: use the correct macro when setting the basic ratesLuciano Coelho
2009-11-28wl1271: remove workaround to ignore -EIO from radio and general paramsLuciano Coelho
2009-11-28wl1271: fix radio and general parameters commandsLuciano Coelho
2009-11-28wl1271: set radio and general params also for PLTLuciano Coelho
2009-11-02wl1271: Check result code of commandsJuuso Oikarinen
2009-10-27wl1271: Added support to scan on 5 GHz bandTeemu Paasikivi
2009-10-27wl1271: Fix IRQ enable handling on FW init failureJuuso Oikarinen
2009-10-27wl1271: Add config structure for FW init parametersJuuso Oikarinen
2009-10-27wl1271: Add config structure for TX path parametersJuuso Oikarinen
2009-10-27wl1271: Add config structure for RX path parametersJuuso Oikarinen
2009-10-27wl1271: Workaround for reference clock setting on boot.Juuso Oikarinen
2009-10-27wl1271: Update boot time configuration for the new firmwareJuuso Oikarinen
2009-10-27wl1271: Enable smart reflexJuuso Oikarinen
2009-10-27wl1271: Configure beacon filtering on if PSM usedJuuso Oikarinen
2009-10-27wl1271: Add connection monitoring configurationJuuso Oikarinen
2009-10-27wl1271: Multicast filtering configurationJuuso Oikarinen
2009-10-27wl1271: Configure rate policies based on AP ratesJuuso Oikarinen
2009-08-14wl1271: add wl1271 driver filesLuciano Coelho