summaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8192u/r8190_rtl8256.c
AgeCommit message (Expand)Author
2019-10-07staging: rtl8192u: Fix indentation for cleaner codeSumera Priyadarsini
2019-08-27staging: rtl8192u: Add or remove blank lines as requiredSumera Priyadarsini
2019-08-27staging: rtl8192u: Add or remove spaces to fix style issuesSumera Priyadarsini
2019-08-15staging: rtl8192u: fix up indentation of a statementColin Ian King
2019-04-03staging: rtl8192u: add proper SPDX identifiers on files that did not have them.Greg Kroah-Hartman
2018-08-27staging:rtl8192u: Rename PHY_SetRF8256OFDMTxPower() - StyleJohn Whitmore
2018-08-27staging:rtl8192u: Rename PHY_SetRF8256CCKTxPower() - StyleJohn Whitmore
2018-08-27staging:rtl8192u: Refactor phy_RF8256_Config_ParaFile() - StyleJohn Whitmore
2018-08-27staging:rtl8192u: Rename function PHY_RF8256_Config() - StyleJohn Whitmore
2018-08-27staging:rtl8192u: Rename PHY_SetRF8256Bandwidth() - StyleJohn Whitmore
2018-08-27staging:rtl8192u: Refactor enum VERSION_819xU - StyleJohn Whitmore
2018-07-29staging:rtl8192u: Rename RF90_RADIO_PATH_E - StyleJohn Whitmore
2018-07-13staging:rtl8192u: Remove typdef from enumeration RF90_RADIO_PATH_E - StyleJohn Whitmore
2018-07-08staging:rtl8192u: rename HT_CHANNEL_WIDTH -> enum ht_channel_widthJohn Whitmore
2017-02-12Staging: rtl8192u: r8190_rtl8256.c - style fixDerek Robson
2016-03-28Staging: rtl8192u: Remove unnecessary semicolon.Sandhya Bankar
2016-02-07Staging: rtl8192u: Fix block comment formattingGavin Thomas Claugus
2015-02-26Staging: rtl8192u: Simplify if condition.Ksenija Stanojevic
2015-01-17Staging: rtl8192u : fix space before , coding style issue in r8190_rtl8256.cMohammad Jamal
2014-09-11staging:r8190_rtl8256: coding style: Fixed commenting styleSanjeev Sharma
2014-08-01staging:r8190: coding style: Fixed checkpatch reported ErrorSanjeev Sharma
2014-04-25staging: rtl8192u: Fix indentation problemsLoïc Pellegrino
2013-05-16rtl8192u: remove whitespace after '(' and before ')' in r8190_rtl8256.cXenia Ragiadakou
2013-05-13STAGING: rtl8192u: fix checkpatch error by adding space after switchXenia Ragiadakou
2013-05-13STAGING: rtl8192u: fix checkpatch error about pointer position in r8190_rtl8256Xenia Ragiadakou
2013-01-07staging/rtl8192u: cleanfile runSebastian Hahn
2009-12-11Staging: Added Realtek rtl8192u driver to stagingJerry Chuang
EV_INITRD) := initramfs_data.o # initramfs_data.o contains the compressed initramfs_data.cpio image. # The image is included using .incbin, a dependency which is not # tracked automatically. $(obj)/initramfs_data.o: $(obj)/$(datafile_y) FORCE ##### # Generate the initramfs cpio archive hostprogs-y := gen_init_cpio initramfs := $(CONFIG_SHELL) $(srctree)/$(src)/gen_initramfs_list.sh ramfs-input := $(if $(filter-out "",$(CONFIG_INITRAMFS_SOURCE)), \ $(shell echo $(CONFIG_INITRAMFS_SOURCE)),-d) ramfs-args := \ $(if $(CONFIG_INITRAMFS_ROOT_UID), -u $(CONFIG_INITRAMFS_ROOT_UID)) \ $(if $(CONFIG_INITRAMFS_ROOT_GID), -g $(CONFIG_INITRAMFS_ROOT_GID)) # $(datafile_d_y) is used to identify all files included # in initramfs and to detect if any files are added/removed. # Removed files are identified by directory timestamp being updated # The dependency list is generated by gen_initramfs.sh -l ifneq ($(wildcard $(obj)/$(datafile_d_y)),) include $(obj)/$(datafile_d_y) endif quiet_cmd_initfs = GEN $@ cmd_initfs = $(initramfs) -o $@ $(ramfs-args) $(ramfs-input) targets := $(datafile_y) # do not try to update files included in initramfs $(deps_initramfs): ; $(deps_initramfs): klibcdirs # We rebuild initramfs_data.cpio if: # 1) Any included file is newer than initramfs_data.cpio # 2) There are changes in which files are included (added or deleted) # 3) If gen_init_cpio are newer than initramfs_data.cpio # 4) Arguments to gen_initramfs.sh changes $(obj)/$(datafile_y): $(obj)/gen_init_cpio $(deps_initramfs) klibcdirs $(Q)$(initramfs) -l $(ramfs-input) > $(obj)/$(datafile_d_y) $(call if_changed,initfs)