diff options
author | Igor M. Liplianin <liplianin@netup.ru> | 2011-09-23 10:17:41 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-09-23 14:00:57 -0400 |
commit | cff4fa8415a3224a5abdd2b1dd7f431e4ea49366 (patch) | |
tree | e27e0d5998d3e47a8fe90380b3c166993b121239 | |
parent | 08347cdd2d745cdcd82e8c4aa2804923df298f33 (diff) |
[media] altera-stapl: it is time to move out from staging
[mchehab@redhat.com: Fix a merge conflict]
Signed-off-by: Igor M. Liplianin <liplianin@netup.ru>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r-- | drivers/media/video/cx23885/cx23885-cards.c | 2 | ||||
-rw-r--r-- | drivers/misc/Kconfig | 1 | ||||
-rw-r--r-- | drivers/misc/Makefile | 1 | ||||
-rw-r--r-- | drivers/misc/altera-stapl/Kconfig (renamed from drivers/staging/altera-stapl/Kconfig) | 2 | ||||
-rw-r--r-- | drivers/misc/altera-stapl/Makefile | 3 | ||||
-rw-r--r-- | drivers/misc/altera-stapl/altera-comp.c (renamed from drivers/staging/altera-stapl/altera-comp.c) | 0 | ||||
-rw-r--r-- | drivers/misc/altera-stapl/altera-exprt.h (renamed from drivers/staging/altera-stapl/altera-exprt.h) | 0 | ||||
-rw-r--r-- | drivers/misc/altera-stapl/altera-jtag.c (renamed from drivers/staging/altera-stapl/altera-jtag.c) | 2 | ||||
-rw-r--r-- | drivers/misc/altera-stapl/altera-jtag.h (renamed from drivers/staging/altera-stapl/altera-jtag.h) | 0 | ||||
-rw-r--r-- | drivers/misc/altera-stapl/altera-lpt.c (renamed from drivers/staging/altera-stapl/altera-lpt.c) | 0 | ||||
-rw-r--r-- | drivers/misc/altera-stapl/altera.c (renamed from drivers/staging/altera-stapl/altera.c) | 2 | ||||
-rw-r--r-- | drivers/staging/Kconfig | 2 | ||||
-rw-r--r-- | drivers/staging/Makefile | 1 | ||||
-rw-r--r-- | drivers/staging/altera-stapl/Makefile | 3 | ||||
-rw-r--r-- | include/misc/altera.h (renamed from drivers/staging/altera-stapl/altera.h) | 0 |
15 files changed, 10 insertions, 9 deletions
diff --git a/drivers/media/video/cx23885/cx23885-cards.c b/drivers/media/video/cx23885/cx23885-cards.c index 76b7563de39c..62fd25e7633b 100644 --- a/drivers/media/video/cx23885/cx23885-cards.c +++ b/drivers/media/video/cx23885/cx23885-cards.c | |||
@@ -25,8 +25,8 @@ | |||
25 | #include <linux/delay.h> | 25 | #include <linux/delay.h> |
26 | #include <media/cx25840.h> | 26 | #include <media/cx25840.h> |
27 | #include <linux/firmware.h> | 27 | #include <linux/firmware.h> |
28 | #include <misc/altera.h> | ||
28 | 29 | ||
29 | #include "../../../staging/altera-stapl/altera.h" | ||
30 | #include "cx23885.h" | 30 | #include "cx23885.h" |
31 | #include "tuner-xc2028.h" | 31 | #include "tuner-xc2028.h" |
32 | #include "netup-eeprom.h" | 32 | #include "netup-eeprom.h" |
diff --git a/drivers/misc/Kconfig b/drivers/misc/Kconfig index 2d6423c2d193..50d5f27f09d0 100644 --- a/drivers/misc/Kconfig +++ b/drivers/misc/Kconfig | |||
@@ -506,5 +506,6 @@ source "drivers/misc/iwmc3200top/Kconfig" | |||
506 | source "drivers/misc/ti-st/Kconfig" | 506 | source "drivers/misc/ti-st/Kconfig" |
507 | source "drivers/misc/lis3lv02d/Kconfig" | 507 | source "drivers/misc/lis3lv02d/Kconfig" |
508 | source "drivers/misc/carma/Kconfig" | 508 | source "drivers/misc/carma/Kconfig" |
509 | source "drivers/misc/altera-stapl/Kconfig" | ||
509 | 510 | ||
510 | endif # MISC_DEVICES | 511 | endif # MISC_DEVICES |
diff --git a/drivers/misc/Makefile b/drivers/misc/Makefile index 8f3efb68a141..b26495a02554 100644 --- a/drivers/misc/Makefile +++ b/drivers/misc/Makefile | |||
@@ -47,3 +47,4 @@ obj-$(CONFIG_AB8500_PWM) += ab8500-pwm.o | |||
47 | obj-y += lis3lv02d/ | 47 | obj-y += lis3lv02d/ |
48 | obj-y += carma/ | 48 | obj-y += carma/ |
49 | obj-$(CONFIG_USB_SWITCH_FSA9480) += fsa9480.o | 49 | obj-$(CONFIG_USB_SWITCH_FSA9480) += fsa9480.o |
50 | obj-$(CONFIG_ALTERA_STAPL) +=altera-stapl/ | ||
diff --git a/drivers/staging/altera-stapl/Kconfig b/drivers/misc/altera-stapl/Kconfig index b6537321ed72..7f01d8e93992 100644 --- a/drivers/staging/altera-stapl/Kconfig +++ b/drivers/misc/altera-stapl/Kconfig | |||
@@ -1,3 +1,5 @@ | |||
1 | comment "Altera FPGA firmware download module" | ||
2 | |||
1 | config ALTERA_STAPL | 3 | config ALTERA_STAPL |
2 | tristate "Altera FPGA firmware download module" | 4 | tristate "Altera FPGA firmware download module" |
3 | depends on I2C | 5 | depends on I2C |
diff --git a/drivers/misc/altera-stapl/Makefile b/drivers/misc/altera-stapl/Makefile new file mode 100644 index 000000000000..055f61ee781a --- /dev/null +++ b/drivers/misc/altera-stapl/Makefile | |||
@@ -0,0 +1,3 @@ | |||
1 | altera-stapl-objs = altera-lpt.o altera-jtag.o altera-comp.o altera.o | ||
2 | |||
3 | obj-$(CONFIG_ALTERA_STAPL) += altera-stapl.o | ||
diff --git a/drivers/staging/altera-stapl/altera-comp.c b/drivers/misc/altera-stapl/altera-comp.c index 49b103bedaaf..49b103bedaaf 100644 --- a/drivers/staging/altera-stapl/altera-comp.c +++ b/drivers/misc/altera-stapl/altera-comp.c | |||
diff --git a/drivers/staging/altera-stapl/altera-exprt.h b/drivers/misc/altera-stapl/altera-exprt.h index 39c38d84a670..39c38d84a670 100644 --- a/drivers/staging/altera-stapl/altera-exprt.h +++ b/drivers/misc/altera-stapl/altera-exprt.h | |||
diff --git a/drivers/staging/altera-stapl/altera-jtag.c b/drivers/misc/altera-stapl/altera-jtag.c index 8b1620b1b2d0..f4bf20096972 100644 --- a/drivers/staging/altera-stapl/altera-jtag.c +++ b/drivers/misc/altera-stapl/altera-jtag.c | |||
@@ -26,7 +26,7 @@ | |||
26 | #include <linux/delay.h> | 26 | #include <linux/delay.h> |
27 | #include <linux/firmware.h> | 27 | #include <linux/firmware.h> |
28 | #include <linux/slab.h> | 28 | #include <linux/slab.h> |
29 | #include "altera.h" | 29 | #include <misc/altera.h> |
30 | #include "altera-exprt.h" | 30 | #include "altera-exprt.h" |
31 | #include "altera-jtag.h" | 31 | #include "altera-jtag.h" |
32 | 32 | ||
diff --git a/drivers/staging/altera-stapl/altera-jtag.h b/drivers/misc/altera-stapl/altera-jtag.h index 2f97e36a2fbc..2f97e36a2fbc 100644 --- a/drivers/staging/altera-stapl/altera-jtag.h +++ b/drivers/misc/altera-stapl/altera-jtag.h | |||
diff --git a/drivers/staging/altera-stapl/altera-lpt.c b/drivers/misc/altera-stapl/altera-lpt.c index 91456a03612d..91456a03612d 100644 --- a/drivers/staging/altera-stapl/altera-lpt.c +++ b/drivers/misc/altera-stapl/altera-lpt.c | |||
diff --git a/drivers/staging/altera-stapl/altera.c b/drivers/misc/altera-stapl/altera.c index 8d73a8642736..1a2c50b82f94 100644 --- a/drivers/staging/altera-stapl/altera.c +++ b/drivers/misc/altera-stapl/altera.c | |||
@@ -28,7 +28,7 @@ | |||
28 | #include <linux/string.h> | 28 | #include <linux/string.h> |
29 | #include <linux/firmware.h> | 29 | #include <linux/firmware.h> |
30 | #include <linux/slab.h> | 30 | #include <linux/slab.h> |
31 | #include "altera.h" | 31 | #include <misc/altera.h> |
32 | #include "altera-exprt.h" | 32 | #include "altera-exprt.h" |
33 | #include "altera-jtag.h" | 33 | #include "altera-jtag.h" |
34 | 34 | ||
diff --git a/drivers/staging/Kconfig b/drivers/staging/Kconfig index 720927742eb7..e9aa68892705 100644 --- a/drivers/staging/Kconfig +++ b/drivers/staging/Kconfig | |||
@@ -142,8 +142,6 @@ source "drivers/staging/ste_rmi4/Kconfig" | |||
142 | 142 | ||
143 | source "drivers/staging/gma500/Kconfig" | 143 | source "drivers/staging/gma500/Kconfig" |
144 | 144 | ||
145 | source "drivers/staging/altera-stapl/Kconfig" | ||
146 | |||
147 | source "drivers/staging/mei/Kconfig" | 145 | source "drivers/staging/mei/Kconfig" |
148 | 146 | ||
149 | source "drivers/staging/nvec/Kconfig" | 147 | source "drivers/staging/nvec/Kconfig" |
diff --git a/drivers/staging/Makefile b/drivers/staging/Makefile index d44d25ed6cf1..a2e77cf1dcb8 100644 --- a/drivers/staging/Makefile +++ b/drivers/staging/Makefile | |||
@@ -59,7 +59,6 @@ obj-$(CONFIG_BCM_WIMAX) += bcm/ | |||
59 | obj-$(CONFIG_FT1000) += ft1000/ | 59 | obj-$(CONFIG_FT1000) += ft1000/ |
60 | obj-$(CONFIG_SND_INTEL_SST) += intel_sst/ | 60 | obj-$(CONFIG_SND_INTEL_SST) += intel_sst/ |
61 | obj-$(CONFIG_SPEAKUP) += speakup/ | 61 | obj-$(CONFIG_SPEAKUP) += speakup/ |
62 | obj-$(CONFIG_ALTERA_STAPL) +=altera-stapl/ | ||
63 | obj-$(CONFIG_TOUCHSCREEN_CLEARPAD_TM1217) += cptm1217/ | 62 | obj-$(CONFIG_TOUCHSCREEN_CLEARPAD_TM1217) += cptm1217/ |
64 | obj-$(CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4) += ste_rmi4/ | 63 | obj-$(CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4) += ste_rmi4/ |
65 | obj-$(CONFIG_DRM_PSB) += gma500/ | 64 | obj-$(CONFIG_DRM_PSB) += gma500/ |
diff --git a/drivers/staging/altera-stapl/Makefile b/drivers/staging/altera-stapl/Makefile deleted file mode 100644 index ddeede3c4b96..000000000000 --- a/drivers/staging/altera-stapl/Makefile +++ /dev/null | |||
@@ -1,3 +0,0 @@ | |||
1 | altera-stapl-y := altera-lpt.o altera-jtag.o altera-comp.o altera.o | ||
2 | |||
3 | obj-$(CONFIG_ALTERA_STAPL) += altera-stapl.o | ||
diff --git a/drivers/staging/altera-stapl/altera.h b/include/misc/altera.h index 94c0c6181daf..94c0c6181daf 100644 --- a/drivers/staging/altera-stapl/altera.h +++ b/include/misc/altera.h | |||