Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1643122 > unrolled thread
| Started by | Tobias Klauser <tklauser@distanz.ch> |
|---|---|
| First post | 2017-05-17 10:40 +0200 |
| Last post | 2017-05-17 12:50 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] s390: use generic fb.h Tobias Klauser <tklauser@distanz.ch> - 2017-05-17 10:40 +0200
Re: [PATCH] s390: use generic fb.h Heiko Carstens <heiko.carstens@de.ibm.com> - 2017-05-17 12:50 +0200
| From | Tobias Klauser <tklauser@distanz.ch> |
|---|---|
| Date | 2017-05-17 10:40 +0200 |
| Subject | [PATCH] s390: use generic fb.h |
| Message-ID | <tI2EV-J3-7@gated-at.bofh.it> |
The arch uses a verbatim copy of the asm-generic version and does not
add any own implemntations to the header, so use asm-generic/fb.h
instead of duplicating code.
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
---
arch/s390/include/asm/Kbuild | 1 +
arch/s390/include/asm/fb.h | 12 ------------
2 files changed, 1 insertion(+), 12 deletions(-)
delete mode 100644 arch/s390/include/asm/fb.h
diff --git a/arch/s390/include/asm/Kbuild b/arch/s390/include/asm/Kbuild
index 45092b12f54f..953315cc37c4 100644
--- a/arch/s390/include/asm/Kbuild
+++ b/arch/s390/include/asm/Kbuild
@@ -5,6 +5,7 @@ generic-y += dma-contiguous.h
generic-y += div64.h
generic-y += emergency-restart.h
generic-y += export.h
+generic-y += fb.h
generic-y += irq_regs.h
generic-y += irq_work.h
generic-y += kmap_types.h
diff --git a/arch/s390/include/asm/fb.h b/arch/s390/include/asm/fb.h
deleted file mode 100644
index c7df38030992..000000000000
--- a/arch/s390/include/asm/fb.h
+++ /dev/null
@@ -1,12 +0,0 @@
-#ifndef _ASM_FB_H_
-#define _ASM_FB_H_
-#include <linux/fb.h>
-
-#define fb_pgprotect(...) do {} while (0)
-
-static inline int fb_is_primary_device(struct fb_info *info)
-{
- return 0;
-}
-
-#endif /* _ASM_FB_H_ */
--
2.13.0
[toc] | [next] | [standalone]
| From | Heiko Carstens <heiko.carstens@de.ibm.com> |
|---|---|
| Date | 2017-05-17 12:50 +0200 |
| Message-ID | <tI4GL-1VC-23@gated-at.bofh.it> |
| In reply to | #1643122 |
On Wed, May 17, 2017 at 10:34:49AM +0200, Tobias Klauser wrote: > The arch uses a verbatim copy of the asm-generic version and does not > add any own implemntations to the header, so use asm-generic/fb.h > instead of duplicating code. > > Signed-off-by: Tobias Klauser <tklauser@distanz.ch> > --- > arch/s390/include/asm/Kbuild | 1 + > arch/s390/include/asm/fb.h | 12 ------------ > 2 files changed, 1 insertion(+), 12 deletions(-) > delete mode 100644 arch/s390/include/asm/fb.h Thanks, however a similar patch which addresses this and yet another header file is available in our features branch, which should be part of linux-next soon: https://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git/commit/?h=features&id=b14b748a1df95a91207ba34981c9a51061b8c93d
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web