Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ef2f8d45 authored by Kalle Valo's avatar Kalle Valo Committed by John W. Linville
Browse files

wl1251: add wl1251 prefix to all 1251 files



Now that all 1271 files are split, we can add wl1251_ prefix to the files.

Signed-off-by: default avatarKalle Valo <kalle.valo@nokia.com>
Reviewed-by: default avatarVidhya Govindan <vidhya.govindan@nokia.com>
Reviewed-by: default avatarLuciano Coelho <luciano.coelho@nokia.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent c7318378
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
wl1251-objs		= main.o spi.o event.o wl1251_tx.o rx.o \
			  ps.o cmd.o acx.o boot.o init.o wl1251_ops.o  \
			  debugfs.o
wl1251-objs		= wl1251_main.o wl1251_spi.o wl1251_event.o \
			  wl1251_tx.o wl1251_rx.o wl1251_ps.o wl1251_cmd.o \
			  wl1251_acx.o wl1251_boot.o wl1251_init.o \
			  wl1251_ops.o wl1251_debugfs.o
obj-$(CONFIG_WL1251)	+= wl1251.o
+3 −3
Original line number Diff line number Diff line
#include "acx.h"
#include "wl1251_acx.h"

#include <linux/module.h>
#include <linux/crc7.h>
@@ -7,8 +7,8 @@
#include "wl12xx.h"
#include "wl12xx_80211.h"
#include "reg.h"
#include "spi.h"
#include "ps.h"
#include "wl1251_spi.h"
#include "wl1251_ps.h"

int wl12xx_acx_frame_rates(struct wl12xx *wl, u8 ctrl_rate, u8 ctrl_mod,
			   u8 mgt_rate, u8 mgt_mod)
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@
#define __WL12XX_ACX_H__

#include "wl12xx.h"
#include "cmd.h"
#include "wl1251_cmd.h"

/* Target's information element */
struct acx_header {
+3 −3
Original line number Diff line number Diff line
@@ -24,9 +24,9 @@
#include <linux/gpio.h>

#include "reg.h"
#include "boot.h"
#include "spi.h"
#include "event.h"
#include "wl1251_boot.h"
#include "wl1251_spi.h"
#include "wl1251_event.h"

static void wl12xx_boot_enable_interrupts(struct wl12xx *wl)
{
Loading