All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mmc-utils: remove obsolete do_write_extcsd function declaration
@ 2015-04-22 17:42 Leon Romanovsky
  2015-04-22 17:42 ` [PATCH] mmc-utils: change .gitignore file to hide temporal files in sub folders Leon Romanovsky
  2015-04-22 17:42 ` [PATCH] mmc-utils: delete dependency files after make clean invocation Leon Romanovsky
  0 siblings, 2 replies; 3+ messages in thread
From: Leon Romanovsky @ 2015-04-22 17:42 UTC (permalink / raw)
  To: chris; +Cc: linux-mmc, Leon Romanovsky

The do_write_extcsd() function was removed from the C-file in
commit"b9c7a17 Rename extcsd read/write to writeprotect get/set".

This patch removes this function definition from H-file too.

Signed-off-by: Leon Romanovsky <leon@leon.nu>
---
 mmc_cmds.h |    1 -
 1 file changed, 1 deletion(-)

diff --git a/mmc_cmds.h b/mmc_cmds.h
index 9e625c9..7a79e87 100644
--- a/mmc_cmds.h
+++ b/mmc_cmds.h
@@ -16,7 +16,6 @@
 
 /* mmc_cmds.c */
 int do_read_extcsd(int nargs, char **argv);
-int do_write_extcsd(int nargs, char **argv);
 int do_writeprotect_get(int nargs, char **argv);
 int do_writeprotect_set(int nargs, char **argv);
 int do_disable_512B_emulation(int nargs, char **argv);
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH] mmc-utils: change .gitignore file to hide temporal files in sub folders
  2015-04-22 17:42 [PATCH] mmc-utils: remove obsolete do_write_extcsd function declaration Leon Romanovsky
@ 2015-04-22 17:42 ` Leon Romanovsky
  2015-04-22 17:42 ` [PATCH] mmc-utils: delete dependency files after make clean invocation Leon Romanovsky
  1 sibling, 0 replies; 3+ messages in thread
From: Leon Romanovsky @ 2015-04-22 17:42 UTC (permalink / raw)
  To: chris; +Cc: linux-mmc, Leon Romanovsky

Signed-off-by: Leon Romanovsky <leon@leon.nu
Signed-off-by: Leon Romanovsky <leon@leon.nu>
---
 .gitignore |    6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/.gitignore b/.gitignore
index 5a94d47..f95fc99 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,3 @@
-.mmc.o.d
-.mmc_cmds.o.d
+*.o
+.*.o.*
 mmc
-mmc.o
-mmc_cmds.o
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH] mmc-utils: delete dependency files after make clean invocation
  2015-04-22 17:42 [PATCH] mmc-utils: remove obsolete do_write_extcsd function declaration Leon Romanovsky
  2015-04-22 17:42 ` [PATCH] mmc-utils: change .gitignore file to hide temporal files in sub folders Leon Romanovsky
@ 2015-04-22 17:42 ` Leon Romanovsky
  1 sibling, 0 replies; 3+ messages in thread
From: Leon Romanovsky @ 2015-04-22 17:42 UTC (permalink / raw)
  To: chris; +Cc: linux-mmc, Leon Romanovsky

Make clean didn't remove dependency files (.*.o.d) which were generated
by GCC. This change deletes these files in all sub folders.

Signed-off-by: Leon Romanovsky <leon@leon.nu>
---
 Makefile |    1 +
 1 file changed, 1 insertion(+)

diff --git a/Makefile b/Makefile
index 0533be3..bef6c82 100644
--- a/Makefile
+++ b/Makefile
@@ -45,6 +45,7 @@ install-man:
 
 clean:
 	rm -f $(progs) $(objects)
+	find . -name .\*.o.d -type f -delete
 	$(MAKE) -C man clean
 
 install: $(progs) install-man
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-04-22 17:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-22 17:42 [PATCH] mmc-utils: remove obsolete do_write_extcsd function declaration Leon Romanovsky
2015-04-22 17:42 ` [PATCH] mmc-utils: change .gitignore file to hide temporal files in sub folders Leon Romanovsky
2015-04-22 17:42 ` [PATCH] mmc-utils: delete dependency files after make clean invocation Leon Romanovsky

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.