1. 22 3月, 2011 20 次提交
  2. 03 3月, 2011 2 次提交
  3. 02 2月, 2011 1 次提交
  4. 21 1月, 2011 1 次提交
    • D
      kconfig: rename CONFIG_EMBEDDED to CONFIG_EXPERT · 6a108a14
      David Rientjes 提交于
      The meaning of CONFIG_EMBEDDED has long since been obsoleted; the option
      is used to configure any non-standard kernel with a much larger scope than
      only small devices.
      
      This patch renames the option to CONFIG_EXPERT in init/Kconfig and fixes
      references to the option throughout the kernel.  A new CONFIG_EMBEDDED
      option is added that automatically selects CONFIG_EXPERT when enabled and
      can be used in the future to isolate options that should only be
      considered for embedded systems (RISC architectures, SLOB, etc).
      
      Calling the option "EXPERT" more accurately represents its intention: only
      expert users who understand the impact of the configuration changes they
      are making should enable it.
      Reviewed-by: NIngo Molnar <mingo@elte.hu>
      Acked-by: NDavid Woodhouse <david.woodhouse@intel.com>
      Signed-off-by: NDavid Rientjes <rientjes@google.com>
      Cc: Greg KH <gregkh@suse.de>
      Cc: "David S. Miller" <davem@davemloft.net>
      Cc: Jens Axboe <axboe@kernel.dk>
      Cc: Arnd Bergmann <arnd@arndb.de>
      Cc: Robin Holt <holt@sgi.com>
      Cc: <linux-arch@vger.kernel.org>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      6a108a14
  5. 19 1月, 2011 7 次提交
  6. 05 1月, 2011 1 次提交
  7. 31 12月, 2010 1 次提交
  8. 30 12月, 2010 1 次提交
  9. 29 12月, 2010 6 次提交
    • D
      [media] DVB: Set scanmask for Budget/SAA7146 cards · 730726a6
      David Henningsson 提交于
      These devices do not return the full command+address, so set
      scanmask accordingly.
      Signed-off-by: NDavid Henningsson <david.henningsson@canonical.com>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      730726a6
    • M
      [media] af9013: Fix a compilation warning · 465a9e3a
      Mauro Carvalho Chehab 提交于
      drivers/media/dvb/frontends/af9013.c: In function ‘af9013_update_signal_strength.clone.0’:
      drivers/media/dvb/frontends/af9013.c:967:6: warning: ‘ret’ may be used uninitialized in this function
      
      Cc: Antti Palosaari <crope@iki.fi>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      465a9e3a
    • M
      [media] stv090x: Fix some compilation warnings · 187e7d3b
      Mauro Carvalho Chehab 提交于
      A few typos at the driver are causing the following warnings:
      
      drivers/media/dvb/frontends/stv090x.c: In function ‘stv090x_start_search’:
      drivers/media/dvb/frontends/stv090x.c:1486:27: warning: comparison between ‘enum stv090x_search’ and ‘enum stv090x_delsys’
      drivers/media/dvb/frontends/stv090x.c:1487:24: warning: comparison between ‘enum stv090x_search’ and ‘enum stv090x_delsys’
      drivers/media/dvb/frontends/stv090x.c: In function ‘stv090x_optimize_track’:
      drivers/media/dvb/frontends/stv090x.c:2943:2: warning: case value ‘4’ not in enumerated type ‘enum stv090x_delsys’
      
      The first two are due to the lack of using the delsys types
      	STV090x_DVBS1/STV090x_DSS
      instead of
      	STV090x_SEARCH_DVBS1/STV090x_SEARCH_DSS
      
      The second one is due to the usage of STV090x_UNKNOWN (enum stv090x_modulation)
      instead of STV090x_ERROR (enum stv090x_delsys).
      
      Cc: Manu Abraham <abraham.manu@gmail.com>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      187e7d3b
    • M
      [media] dib7000m/dib7000p: Add support for TRANSMISSION_MODE_4K · 2e94b53c
      Mauro Carvalho Chehab 提交于
      Fixes several warnings:
      
      drivers/media/dvb/frontends/dib7000m.c: In function ‘dib7000m_set_channel’:
      drivers/media/dvb/frontends/dib7000m.c:808:3: warning: case value ‘255’ not in enumerated type ‘fe_transmit_mode_t’
      drivers/media/dvb/frontends/dib7000m.c:869:3: warning: case value ‘255’ not in enumerated type ‘fe_transmit_mode_t’
      drivers/media/dvb/frontends/dib7000m.c: In function ‘dib7000m_tune’:
      drivers/media/dvb/frontends/dib7000m.c:1023:3: warning: case value ‘255’ not in enumerated type ‘fe_transmit_mode_t’
      drivers/media/dvb/frontends/dib7000m.c:1033:3: warning: case value ‘255’ not in enumerated type ‘fe_transmit_mode_t’
      drivers/media/dvb/frontends/dib7000m.c:1043:3: warning: case value ‘255’ not in enumerated type ‘fe_transmit_mode_t’
      drivers/media/dvb/frontends/dib7000p.c: In function ‘dib7000p_set_channel’:
      drivers/media/dvb/frontends/dib7000p.c:720:3: warning: case value ‘255’ not in enumerated type ‘fe_transmit_mode_t’
      drivers/media/dvb/frontends/dib7000p.c:773:3: warning: case value ‘255’ not in enumerated type ‘fe_transmit_mode_t’
      drivers/media/dvb/frontends/dib7000p.c: In function ‘dib7000p_tune’:
      drivers/media/dvb/frontends/dib7000p.c:997:3: warning: case value ‘255’ not in enumerated type ‘fe_transmit_mode_t’
      drivers/media/dvb/frontends/dib7000p.c:1007:3: warning: case value ‘255’ not in enumerated type ‘fe_transmit_mode_t’
      drivers/media/dvb/frontends/dib7000p.c:1017:3: warning: case value ‘255’ not in enumerated type ‘fe_transmit_mode_t’
      
      The drivers were prepared to support 4K carriers, but as the define were added
      later, they were using a "magic" value of 255.
      
      Cc: Patrick Boettcher <pb@linuxtv.org>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      2e94b53c
    • M
      [media] dmxdev: Fix a compilation warning due to a bad type · 9ae2ae35
      Mauro Carvalho Chehab 提交于
      drivers/media/dvb/dvb-core/dmxdev.c: In function ‘dvb_dmxdev_start_feed’:
      drivers/media/dvb/dvb-core/dmxdev.c:583:13: warning: comparison between ‘enum dmx_ts_pes’ and ‘enum <anonymous>’
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      9ae2ae35
    • S
      [media] drivers:media:dvb: add USB PIDs for Elgato EyeTV Sat · 10304ca6
      Sam Doshi 提交于
      Adds USB PIDs for the Elgato EyeTV Sat device.
      This device is a clone of the Terratec S7.
      Signed-off-by: NSam Doshi <sam@metal-fish.co.uk>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      10304ca6